File tree 4 files changed +1561
-17
lines changed
4 files changed +1561
-17
lines changed Original file line number Diff line number Diff line change
1
+ files: [
2
+ 'package.json',
3
+ 'bower.json'
4
+ ]
5
+
6
+ plugins:
7
+
8
+ postrelease:
9
+
10
+ 'Compiling browser version':
11
+ plugin: 'bumped-terminal'
12
+ command: 'npm run build'
13
+
14
+ 'Update changelog':
15
+ plugin: 'bumped-terminal'
16
+ command: 'npm run changelog'
17
+
18
+ 'Commiting new version':
19
+ plugin: 'bumped-terminal'
20
+ command: 'git commit -am "$newVersion releases" && git push origin master'
21
+
22
+ 'Publishing tag at GitHub':
23
+ plugin: 'bumped-terminal'
24
+ command: 'git tag v$newVersion && git push origin v$newVersion'
Original file line number Diff line number Diff line change 1
1
language : node_js
2
- # cache:
3
- # directories:
4
- # - node_modules
2
+ cache :
3
+ directories :
4
+ - node_modules
5
5
node_js :
6
- - " 7"
6
+ - " 9"
7
+ - " 8"
7
8
- " 6"
8
9
after_success :
9
10
- npm run coverall
11
+
12
+ deploy :
13
+ provider : npm
14
+ email : $NPM_EMAIL
15
+ api_key : $NPM_API_KEY
16
+ skip_cleanup : true
17
+ on :
18
+ tags : true
19
+ node : " 8"
You can’t perform that action at this time.
0 commit comments