Skip to content

Commit

Permalink
chore: upgrade dependencies; fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
boopathi committed Sep 24, 2018
1 parent ec4a5ec commit 0f7c395
Show file tree
Hide file tree
Showing 4 changed files with 667 additions and 1,026 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,34 +23,34 @@
"@babel/plugin-transform-block-scoping": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"babel-jest": "^23.6.0",
"butternut": "^0.4.6",
"bytes": "^3.0.0",
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"closure-compiler": "^0.2.12",
"codecov": "^3.0.1",
"commander": "^2.15.1",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"codecov": "^3.1.0",
"commander": "^2.18.0",
"eslint": "^5.6.0",
"eslint-plugin-prettier": "^2.6.2",
"fancy-log": "^1.3.2",
"fs-readdir-recursive": "^1.1.0",
"google-closure-compiler-js": "^20180402.0.0",
"google-closure-compiler-js": "^20180610.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^8.0.0",
"gulp-newer": "^1.4.0",
"jest-cli": "^22.4.3",
"jest-cli": "^23.6.0",
"lerna": "^3.4.0",
"lerna-changelog": "^0.7.0",
"lint-staged": "^7.0.5",
"lerna-changelog": "^0.8.0",
"lint-staged": "^7.3.0",
"markdown-table": "^1.1.2",
"minimist": "^1.2.0",
"prettier": "^1.12.1",
"request": "^2.85.0",
"prettier": "^1.14.3",
"request": "^2.88.0",
"rimraf": "^2.6.2",
"terser": "^3.8.0",
"terser": "^3.8.2",
"through2": "^2.0.3",
"uglify-js": "^3.3.23",
"uglify-js": "^3.4.9",
"util.promisify": "^1.0.0"
},
"engines": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function thePlugin(name, source, expected, ...replacements) {
plugins: [[replacer, { replacements }]]
});
}
thePlugin.skip = theTester.skip();
thePlugin.skip = theTester.skip;

describe("replace-plugin", () => {
thePlugin(
Expand Down
2 changes: 1 addition & 1 deletion utils/test-transform/src/test-transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function makeTester(
});
};

thePlugin.skip = name => test.skip(name);
thePlugin.skip = name => test.skip(name, () => {});

if (excludeKeys.indexOf("inEachLine") === -1) {
thePlugin.inEachLine = makeTester(
Expand Down
Loading

0 comments on commit 0f7c395

Please sign in to comment.