Skip to content

Commit

Permalink
build: Update devDependencies
Browse files Browse the repository at this point in the history
* karma-coverage@0.3.0: Includes fix for karma-runner/karma-coverage#24.
  We can remove the workaround config in text-console that was
  there to prevent an unwanted directory from being created.

* karma-chrome-launcher@0.1.8: Includes support for "chromium-browser"
  (in addition to "chromium") so we can eventually remove the hack
  in Jenkins that exports CHROME_BIN=chromium-browser.

Change-Id: Ie360a93b2324d4a0736bbd86939e4c965574ae0b
  • Loading branch information
Krinkle committed Apr 16, 2015
1 parent d99060b commit b48c239
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ module.exports = function ( grunt ) {
reporters: [ 'dots', 'coverage' ],
coverageReporter: { reporters: [
{ type: 'html', dir: 'coverage/' },
{ type: 'text-summary', dir: 'coverage/' }
{ type: 'text-summary' }
] }
},
jquery: {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
"grunt": "0.4.5",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-jshint": "0.11.0",
"grunt-contrib-jshint": "0.11.1",
"grunt-contrib-watch": "0.6.1",
"grunt-jscs": "1.5.0",
"grunt-jscs": "1.6.0",
"grunt-karma": "0.10.1",
"jquery": "1.11.2",
"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.0",
"karma-firefox-launcher": "0.1.4",
"karma-phantomjs-launcher": "0.1.4",
"karma-qunit": "0.1.4",
Expand Down

0 comments on commit b48c239

Please sign in to comment.