Skip to content

Commit

Permalink
bump dev dependencies and make XO happy
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Nov 16, 2016
1 parent 26bcab0 commit 056f227
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/babel-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ var rewritePlugin = lazy(function () {
});

function rewriteBabelRuntimePaths(path) {
var isBabelPath = /^babel-runtime[\\\/]?/.test(path.node.value);
var isBabelPath = /^babel-runtime[\\/]?/.test(path.node.value);

if (path.isLiteral() && isBabelPath) {
path.node.value = require.resolve(path.node.value);
Expand Down
2 changes: 1 addition & 1 deletion lib/fork.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module.exports = function (file, opts, execArgv) {
return;
}

event.name = event.name.replace(/^ava\-/, '');
event.name = event.name.replace(/^ava-/, '');
event.data.file = relFile;

debug('ipc %s:\n%o', event.name, event.data);
Expand Down
2 changes: 1 addition & 1 deletion lib/prefix-title.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function (file, base, separator) {
})
.replace(/\.spec/, '')
.replace(/\.test/, '')
.replace(/test\-/g, '')
.replace(/test-/g, '')
.replace(/\.js$/, '')
.split(path.sep)
.filter(function (p) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,14 +175,14 @@
"inquirer": "^1.0.2",
"lolex": "^1.4.0",
"mkdirp": "^0.5.1",
"nyc": "^8.3.0",
"nyc": "^9.0.1",
"pify": "^2.3.0",
"proxyquire": "^1.7.4",
"rimraf": "^2.5.0",
"signal-exit": "^3.0.0",
"sinon": "^1.17.2",
"source-map-fixtures": "^2.1.0",
"tap": "^7.1.2",
"tap": "^8.0.0",
"touch": "^1.0.0",
"xo": "^0.17.0",
"zen-observable": "^0.3.0"
Expand Down

0 comments on commit 056f227

Please sign in to comment.