Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: Upgrade dev dependencies
  • Loading branch information
dignifiedquire committed Oct 7, 2015
1 parent ecb1749 commit 001cd94
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,9 +1,9 @@
sudo: false
language: node_js
node_js:
- "iojs"
- "4.0"
- "0.12"
- "0.10"
- "0.8"

# Make sure we have new NPM.
before_install:
Expand Down
29 changes: 27 additions & 2 deletions gruntfile.js
Expand Up @@ -18,6 +18,30 @@ module.exports = function (grunt) {
commitMessage: 'chore: update contributors'
}
},
conventionalChangelog: {
release: {
options: {
changelogOpts: {
preset: 'angular'
}
},
src: 'CHANGELOG.md'
}
},
conventionalGithubReleaser: {
release: {
options: {
auth: {
type: 'oauth',
token: process.env.GH_TOKEN
},
changelogOpts: {
preset: 'angular',
releaseCount: 0
}
}
}
},
bump: {
options: {
commitMessage: 'chore: release v%VERSION%',
Expand Down Expand Up @@ -54,9 +78,10 @@ module.exports = function (grunt) {
grunt.registerTask('release', 'Bump the version and publish to NPM.', function (type) {
grunt.task.run([
'npm-contributors',
'bump-only:' + (type || 'patch'),
'changelog',
'bump:' + (type || 'patch') + ':bump-only',
'conventionalChangelog',
'bump-commit',
'conventionalGithubReleaser',
'npm-publish'
])
})
Expand Down
22 changes: 12 additions & 10 deletions package.json
Expand Up @@ -22,23 +22,25 @@
},
"license": "MIT",
"devDependencies": {
"chai": "^3.0.0",
"eslint": "^0.23.0",
"eslint-config-standard": "^3.3.0",
"chai": "^3.3.0",
"eslint": "^1.6.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"grunt": "^0.4.1",
"grunt-auto-release": "^0.0.6",
"grunt-bump": "^0.3.1",
"grunt-conventional-changelog": "^1.2.2",
"grunt-eslint": "^15.0.0",
"grunt-karma": "^0.11.1",
"grunt-bump": "^0.6.0",
"grunt-conventional-changelog": "^5.0.0",
"grunt-conventional-github-releaser": "^0.5.0",
"grunt-eslint": "^17.2.0",
"grunt-karma": "^0.12.1",
"grunt-npm": "^0.0.2",
"grunt-simple-mocha": "^0.4.0",
"jasmine-node": "^1.14.5",
"karma": "^0.12.36",
"karma": "^0.13.10",
"karma-mocha": "^0.2.0",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.2.5",
"sinon": "^1.15.3"
"mocha": "^2.3.3",
"sinon": "^1.17.1"
},
"contributors": [
"Mark Ethan Trostler <mark@zzo.com>",
Expand Down

0 comments on commit 001cd94

Please sign in to comment.