Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Nov 10, 2016
1 parent 2591a88 commit beb6a5a
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions lib/Bumped.default.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,24 @@ module.exports =

plugins: (files) ->
return {
plugins:
prerelease:
'Linting config files':
plugin: 'bumped-finepack'
postrelease:
'Generating CHANGELOG file':
plugin: 'bumped-changelog'
'Commiting new version':
plugin: 'bumped-terminal'
command: 'git add CHANGELOG.md ' + files.join(' ') + ' && git commit -m "Release $newVersion"'
'Detecting problems before publish':
plugin: 'bumped-terminal'
command: 'git-dirty && npm test'
'Publishing tag to GitHub':
plugin: 'bumped-terminal'
command: 'git tag $newVersion && git push && git push --tags'
'Publishing to NPM':
plugin: 'bumped-terminal'
command: 'npm publish'
prerelease:
'Linting config files':
plugin: 'bumped-finepack'
postrelease:
'Generating CHANGELOG file':
plugin: 'bumped-changelog'
'Commiting new version':
plugin: 'bumped-terminal'
command: 'git add CHANGELOG.md ' + files.join(' ') + ' && git commit -m "Release $newVersion"'
'Detecting problems before publish':
plugin: 'bumped-terminal'
command: 'git-dirty && npm test'
'Publishing tag to GitHub':
plugin: 'bumped-terminal'
command: 'git tag $newVersion && git push && git push --tags'
'Publishing to NPM':
plugin: 'bumped-terminal'
command: 'npm publish'
}

keywords:
Expand Down

0 comments on commit beb6a5a

Please sign in to comment.