Skip to content

Commit

Permalink
Upgrade all dev dependencies
Browse files Browse the repository at this point in the history
Fixes #104. Fixes #108.
  • Loading branch information
domenic committed Aug 18, 2018
1 parent 3dc5ab0 commit 0a1803a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
13 changes: 6 additions & 7 deletions package.json
Expand Up @@ -17,13 +17,12 @@
"devDependencies": {
"browserify": "^16.2.2",
"domexception": "^1.0.1",
"eslint": "^4.19.1",
"istanbul": "~0.4.5",
"jest": "^22.4.3",
"jsdom": "^11.8.0",
"recast": "~0.14.7",
"request": "^2.85.0",
"webidl2js": "^7.4.0"
"eslint": "^5.4.0",
"jest": "^23.5.0",
"jsdom": "^11.12.0",
"recast": "^0.15.3",
"request": "^2.88.0",
"webidl2js": "^9.0.1"
},
"scripts": {
"build": "node scripts/transform.js && node scripts/convert-idl.js",
Expand Down
2 changes: 1 addition & 1 deletion scripts/convert-idl.js
Expand Up @@ -14,5 +14,5 @@ transformer.addSource(srcDir, implDir);
transformer.generate(outputDir)
.catch(err => {
console.error(err.stack);
process.exit(0);
process.exit(1);
});
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/testharness.js
Expand Up @@ -4,7 +4,7 @@ const assert = require("assert");
/* eslint-disable camelcase */
module.exports = {
test(func, name) {
test(name, func);
test(name || "[single-file test]", func);
},

promise_test() {
Expand Down

0 comments on commit 0a1803a

Please sign in to comment.