Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Nov 23, 2015
1 parent 7bb7c9f commit a8d7cab
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: node_js
node_js:
- "0.10"
- "0.12"
- "stable"
- "iojs"
before_script:
- "npm install -g grunt-cli"
Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = function(grunt) {
'command': 'istanbul cover --report "html" --verbose --dir "coverage" "tests/tests.js"'
},
'cover-coveralls': {
'command': 'istanbul cover --verbose --dir "coverage" "tests/tests.js" && cat coverage/lcov.info | coveralls; rm -rf coverage/lcov*'
'command': 'istanbul cover --verbose --dir "coverage" "tests/tests.js" && coveralls < coverage/lcov.info; rm -rf coverage/lcov*'
},
'test-narwhal': {
'command': 'echo "Testing in Narwhal..."; export NARWHAL_OPTIMIZATION=-1; narwhal "tests/tests.js"'
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
"test": "node tests/tests.js"
},
"devDependencies": {
"coveralls": "^2.10.0",
"coveralls": "^2.11.4",
"grunt": "^0.4.5",
"grunt-shell": "^0.7.0",
"grunt-shell": "^1.1.2",
"grunt-template": "^0.2.3",
"istanbul": "^0.2.10",
"qunit-extras": "^1.2.0",
"qunitjs": "~1.11.0",
"regenerate": "^0.6.2",
"requirejs": "^2.1.13"
"istanbul": "^0.4.0",
"qunit-extras": "^1.4.4",
"qunitjs": "^1.20.0",
"regenerate": "^1.2.1",
"requirejs": "^2.1.22"
}
}
2 changes: 1 addition & 1 deletion tests/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
function() {
base64.decode('YQ===');
},
'Invalid character',
/Invalid character/,
'Invalid character'
);
equal(
Expand Down

0 comments on commit a8d7cab

Please sign in to comment.