Skip to content

Commit

Permalink
Update bumped config
Browse files Browse the repository at this point in the history
Kikobeats committed Jan 14, 2016
1 parent eefa46a commit 16128e6
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .bumpedrc
Original file line number Diff line number Diff line change
@@ -21,15 +21,15 @@ plugins:

'Commiting new version':
plugin: 'bumped-terminal'
command: 'npm run commit'
command: 'git add CHANGELOG.md bower.json package.json dist && git commit -m "$newVersion releases"'

'Detecting problem before publish':
plugin: 'bumped-terminal'
command: 'npm run dirty && npm run clean && npm install && npm test'
command: 'git-dirty && npm run clean && npm install && npm test'

'Publishing tag at Github':
plugin: 'bumped-terminal'
command: 'npm run push'
command: 'git tag $newVersion && git push origin $newVersion --follow-tags'

'Publishing at NPM':
plugin: 'bumped-terminal'
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -47,11 +47,8 @@
},
"scripts": {
"clean": "rm -rf node_modules",
"dirty": "./node_modules/.bin/git-dirty",
"commit": "git add CHANGELOG.md bower.json package.json dist && git commit -m \"$newVersion releases\"",
"lint": "./node_modules/.bin/standard lib",
"lint": "standard lib",
"pretest": "npm run lint",
"push": "git tag $newVersion && git push origin $newVersion --follow-tags",
"test": "sh test/test.sh"
},
"license": "MIT"

0 comments on commit 16128e6

Please sign in to comment.