-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a file for maintenance instructions
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
The maintainers file is instructions for maintainers on operating the project. | ||
Especially useful for things that don't need to be done often! | ||
|
||
## Releasing a package version | ||
|
||
1. Update `package.json` with the new version number, and merge this change to the main branch. | ||
|
||
2. Tag the main branch with the new version `git tag -a v0.1.0 -m "Release version 0.1.0"`. | ||
|
||
3. Push the tag to the repo: `git push origin v0.1.0`. | ||
|
||
4. Publish to npm: `npm publish`. |