From 70c39b0ccf217145611b89a7462d7bea5ca03d9c Mon Sep 17 00:00:00 2001 From: Kiko Beats Date: Fri, 25 Mar 2016 12:42:06 +0100 Subject: [PATCH] Add bumped integration --- .bumpedrc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .bumpedrc diff --git a/.bumpedrc b/.bumpedrc new file mode 100644 index 0000000..f940e3f --- /dev/null +++ b/.bumpedrc @@ -0,0 +1,31 @@ +files: [ + 'package.json' +] + +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 package.json && 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' \ No newline at end of file