Skip to content

Commit

Permalink
build: Bump dependencies
Browse files Browse the repository at this point in the history
* Add grunt-cli so that users don't need grunt-cli pre-installed globally.

* karma-coverage@0.3.0
  Fixes karma-runner/karma-coverage#24

* karma-chrome-launcher@0.1.8
  Fixes karma-runner/karma-chrome-launcher#41.
  This will allow our Jenkins setup to rid the CHROME_BIN hack, after all
  projects have updated.

* grunt-jscs@1.8.0: Addresses T90816.

Change-Id: I49eb93e590e475536bbaaa30b83ea888390190d2
  • Loading branch information
Krinkle committed Apr 29, 2015
1 parent fc56e75 commit 79432cf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ module.exports = function ( grunt ) {
},
reporters: [ 'dots', 'coverage' ],
coverageReporter: { reporters: [
{ type: 'html', dir: 'coverage/' },
{ type: 'text-summary', dir: 'coverage/' }
{ type: 'text-summary' },
{ type: 'html', dir: 'coverage/' }
] }
},
local: {
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@
"dependencies": {},
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-concat": "0.5.0",
"grunt-contrib-jshint": "0.11.0",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-jshint": "0.11.2",
"grunt-contrib-watch": "0.6.1",
"grunt-jscs": "1.2.0",
"grunt-karma": "0.8.3",
"grunt-jscs": "1.8.0",
"grunt-karma": "0.10.1",
"karma": "0.12.31",
"karma-chrome-launcher": "0.1.7",
"karma-coverage": "0.2.7",
"karma-chrome-launcher": "0.1.8",
"karma-coverage": "0.3.1",
"karma-firefox-launcher": "0.1.4",
"karma-phantomjs-launcher": "0.1.4",
"karma-qunit": "0.1.4",
Expand Down

0 comments on commit 79432cf

Please sign in to comment.