Skip to content

Commit

Permalink
Merge pull request #3229 from dependabot/feelepxyz/fix-flaky-npm6-spec
Browse files Browse the repository at this point in the history
  • Loading branch information
feelepxyz authored Mar 4, 2021
2 parents 1374df6 + e695105 commit f3239df
Show file tree
Hide file tree
Showing 6 changed files with 10,239 additions and 5,979 deletions.
4 changes: 2 additions & 2 deletions npm_and_yarn/helpers/lib/npm6/peer-dependency-checker.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
* - successful completion, or an error if there are peer dependency warnings
*/

const npm = require("npm6");
const installer = require("npm6/lib/install");
const npm = require("npm");
const installer = require("npm/lib/install");
const { muteStderr, runAsync } = require("./helpers.js");

function installArgsWithVersion(depName, desiredVersion, reqs) {
Expand Down
4 changes: 2 additions & 2 deletions npm_and_yarn/helpers/lib/npm6/subdependency-updater.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fs = require("fs");
const path = require("path");
const npm = require("npm6");
const installer = require("npm6/lib/install");
const npm = require("npm");
const installer = require("npm/lib/install");
const detectIndent = require("detect-indent");
const removeDependenciesFromLockfile = require("./remove-dependencies-from-lockfile");

Expand Down
4 changes: 2 additions & 2 deletions npm_and_yarn/helpers/lib/npm6/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*/
const fs = require("fs");
const path = require("path");
const npm = require("npm6");
const installer = require("npm6/lib/install");
const npm = require("npm");
const installer = require("npm/lib/install");
const detectIndent = require("detect-indent");
const { muteStderr, runAsync } = require("./helpers.js");

Expand Down
Loading

0 comments on commit f3239df

Please sign in to comment.