Skip to content

Commit

Permalink
fix: Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Sep 9, 2015
1 parent 3db2ecb commit 27abcda
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 15 deletions.
29 changes: 28 additions & 1 deletion gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,32 @@ module.exports = function (grunt) {
}
},

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: {
updateConfigs: ['pkg'],
Expand Down Expand Up @@ -104,8 +130,9 @@ module.exports = function (grunt) {
grunt.task.run([
'npm-contributors',
'bump:' + (type || 'patch') + ':bump-only',
'changelog',
'conventionalChangelog',
'bump-commit',
'conventionalGithubReleaser',
'npm-publish'
])
})
Expand Down
27 changes: 14 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,24 @@
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"lodash": "~3.9.3"
"lodash": "^3.10.1"
},
"devDependencies": {
"eslint": "^0.21.2",
"eslint-config-standard": "^1.1.1",
"eslint-plugin-react": "^2.3.0",
"eslint": "^1.3.1",
"eslint-config-standard": "^4.3.1",
"eslint-plugin-react": "^3.3.1",
"expect.js": "^0.3.1",
"grunt": "~0.4.3",
"grunt-bump": "0.3.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-conventional-changelog": "~1.2.2",
"grunt-eslint": "^13.0.0",
"grunt": "^0.4.3",
"grunt-bump": "0.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-conventional-changelog": "^3.0.0",
"grunt-conventional-github-releaser": "^0.2.0",
"grunt-eslint": "^17.1.0",
"grunt-npm": "0.0.2",
"karma": "~0.13.0",
"karma-chrome-launcher": "~0.1.2",
"karma-firefox-launcher": "~0.1.3",
"karma-mocha": "~0.1.3",
"karma": "^0.13.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.2.0",
"load-grunt-tasks": "^3.2.0"
},
"peerDependencies": {
Expand Down
1 change: 0 additions & 1 deletion tasks/grunt-karma.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ module.exports = function (grunt) {

// allow karma to be run in the background so it doesn't block grunt
if (data.background) {

var backgroundProcess = require('child_process').fork(
path.join(__dirname, '..', 'lib', 'background.js'),
{ silent: true }
Expand Down

0 comments on commit 27abcda

Please sign in to comment.