-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release guidelines 0.2.0-rc.2 More release guidelines
- Loading branch information
Showing
6 changed files
with
39 additions
and
4 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
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ package-lock.json | |
yarn.lock | ||
yarn*.log | ||
debug.html | ||
|
||
# packages | ||
*.tgz |
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
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,28 @@ | ||
# Install in development mode | ||
|
||
npm install -g . | ||
npm install --only=dev . | ||
|
||
# Making a release | ||
|
||
Test | ||
|
||
npm run test | ||
|
||
Update changelog and finalize changes | ||
|
||
git commit | ||
npm version prerelease # or patch, minor, major | ||
|
||
Package | ||
|
||
npm run prepare # runs genversion | ||
git add version.js | ||
npm pack # automatically commits and tags | ||
|
||
Deploy | ||
|
||
git push | ||
git push --tags | ||
npm publish | ||
|
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// generated by genversion | ||
module.exports = '0.2.0-rc.1' | ||
module.exports = '0.2.0-rc.2' |