-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.bumpedrc
36 lines (26 loc) · 800 Bytes
/
.bumpedrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
files: [
'package.json'
'bower.json'
]
plugins:
prerelease:
'Linting config files':
plugin: 'bumped-finepack'
postrelease:
'Compiling browser version':
plugin: 'bumped-terminal'
command: 'gulp'
'Generating CHANGELOG file':
plugin: 'bumped-changelog'
'Commiting new version':
plugin: 'bumped-terminal'
command: 'git add CHANGELOG.md bower.json package.json dist && 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'