UNPKG

569 BPlain TextView Raw
1files: [
2 'package.json'
3]
4
5plugins:
6
7 prerelease:
8
9 'Linting config files':
10 plugin: 'bumped-finepack'
11
12 postrelease:
13
14 'Generating CHANGELOG file':
15 plugin: 'bumped-changelog'
16
17 'Commiting new version':
18 plugin: 'bumped-terminal'
19 command: 'git add CHANGELOG.md package.json && git commit -m "Release $newVersion"'
20
21 'Publishing tag at GitHub':
22 plugin: 'bumped-terminal'
23 command: 'git tag $newVersion && git push && git push --tags'
24
25 'Publishing at NPM':
26 plugin: 'bumped-terminal'
27 command: 'npm publish'