-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v4.1.2 * update release docs --------- Co-authored-by: Frederik Braun <fbraun+github@mozilla.com>
- Loading branch information
1 parent
bf360a9
commit c933df1
Showing
2 changed files
with
24 additions
and
10 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,24 @@ | ||
# Instructions for creating a new release | ||
|
||
# Check everything locally: | ||
|
||
- `npm run test` | ||
- `npm run lint` | ||
|
||
# Preparing the code | ||
|
||
- Bump version in package.json | ||
- git add | ||
- git commit | ||
- git push to branch | ||
- Get code review (branch protection) and then merge | ||
- wait for travis results just to be sure. | ||
|
||
**At this point people tracking `main` should already get the new version** | ||
|
||
# Publish the release as a new version | ||
|
||
- git tag -a x.y.z | ||
- npm publish | ||
- git push --tags | ||
- Go to [https://github.com/mozilla/eslint-plugin-no-unsanitized/releases](https://github.com/mozilla/eslint-plugin-no-unsanitized/releases) to create a new release. Pick the right tag. |