Skip to content

Commit

Permalink
fix(deps): Explicit npm-lifecycle ^2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evocateur committed Feb 4, 2019
1 parent 6ba3d1d commit 506ad6d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions utils/run-lifecycle/__tests__/run-lifecycle.test.js
@@ -1,10 +1,10 @@
"use strict";

jest.mock("libnpm/run-script", () => jest.fn(() => Promise.resolve()));
jest.mock("npm-lifecycle", () => jest.fn(() => Promise.resolve()));

const log = require("libnpm/log");
const loggingOutput = require("@lerna-test/logging-output");
const runScript = require("libnpm/run-script");
const runScript = require("npm-lifecycle");
const npmConf = require("@lerna/npm-conf");
const Package = require("@lerna/package");
const runLifecycle = require("../run-lifecycle");
Expand Down
3 changes: 2 additions & 1 deletion utils/run-lifecycle/package.json
Expand Up @@ -32,6 +32,7 @@
"dependencies": {
"@lerna/npm-conf": "file:../npm-conf",
"figgy-pudding": "^3.5.1",
"libnpm": "^2.0.1"
"libnpm": "^2.0.1",
"npm-lifecycle": "^2.1.0"
}
}
2 changes: 1 addition & 1 deletion utils/run-lifecycle/run-lifecycle.js
@@ -1,7 +1,7 @@
"use strict";

const log = require("libnpm/log");
const runScript = require("libnpm/run-script");
const runScript = require("npm-lifecycle");
const figgyPudding = require("figgy-pudding");
const npmConf = require("@lerna/npm-conf");

Expand Down

0 comments on commit 506ad6d

Please sign in to comment.