forked from yuristrelets/react-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bumpedrc
More file actions
29 lines (23 loc) · 710 Bytes
/
.bumpedrc
File metadata and controls
29 lines (23 loc) · 710 Bytes
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
files: [
'package.json'
]
plugins:
prerelease:
'Linting config files':
plugin: 'bumped-finepack'
'Linting projects files':
plugin: 'bumped-terminal'
command: 'npm run lint'
'Preparing build':
plugin: 'bumped-terminal'
command: 'npm run prepublish'
postrelease:
'Commiting new version':
plugin: 'bumped-terminal'
command: 'git add package.json && git commit package.json -m "$newVersion release" && git push origin master'
'Publishing tag at Github':
plugin: 'bumped-terminal'
command: 'git tag $newVersion && git push origin $newVersion'
'Publishing at NPM':
plugin: 'bumped-terminal'
command: 'npm publish'