-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 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,31 @@ | ||
files: [ | ||
'package.json' | ||
] | ||
|
||
plugins: | ||
|
||
prerelease: | ||
|
||
'Linting config files': | ||
plugin: 'bumped-finepack' | ||
|
||
postrelease: | ||
|
||
'Generating CHANGELOG file': | ||
plugin: 'bumped-changelog' | ||
|
||
'Commiting new version': | ||
plugin: 'bumped-terminal' | ||
command: 'git add CHANGELOG.md package.json && git commit -m "Release $newVersion"' | ||
|
||
'Detecting problem before publish': | ||
plugin: 'bumped-terminal' | ||
command: 'git-dirty && npm test' | ||
|
||
'Publishing tag at GitHub': | ||
plugin: 'bumped-terminal' | ||
command: 'git tag $newVersion && git push && git push --tags' | ||
|
||
'Publishing at NPM': | ||
plugin: 'bumped-terminal' | ||
command: 'npm publish' |