Skip to content

Commit

Permalink
fix(deps): Explicit npmlog ^4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
evocateur committed Feb 4, 2019
1 parent a506d96 commit 571c2e2
Show file tree
Hide file tree
Showing 89 changed files with 152 additions and 94 deletions.
2 changes: 1 addition & 1 deletion commands/bootstrap/lib/has-dependency-installed.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const readPackageTree = require("read-package-tree");
const semver = require("semver");

Expand Down
1 change: 1 addition & 0 deletions commands/bootstrap/package.json
Expand Up @@ -53,6 +53,7 @@
"libnpm": "^2.0.1",
"multimatch": "^2.1.0",
"npm-package-arg": "^6.1.0",
"npmlog": "^4.1.2",
"p-finally": "^1.0.0",
"p-map": "^1.2.0",
"p-map-series": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion commands/diff/lib/get-last-commit.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = getLastCommit;
Expand Down
2 changes: 1 addition & 1 deletion commands/diff/lib/has-commit.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = hasCommit;
Expand Down
3 changes: 2 additions & 1 deletion commands/diff/package.json
Expand Up @@ -35,6 +35,7 @@
"@lerna/child-process": "file:../../core/child-process",
"@lerna/command": "file:../../core/command",
"@lerna/validation-error": "file:../../core/validation-error",
"libnpm": "^2.0.1"
"libnpm": "^2.0.1",
"npmlog": "^4.1.2"
}
}
2 changes: 1 addition & 1 deletion commands/publish/command.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const versionCommand = require("@lerna/version/command");

/**
Expand Down
2 changes: 1 addition & 1 deletion commands/publish/lib/fetch-config.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const figgyPudding = require("figgy-pudding");

module.exports = figgyPudding(
Expand Down
2 changes: 1 addition & 1 deletion commands/publish/lib/get-current-sha.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = getCurrentSHA;
Expand Down
2 changes: 1 addition & 1 deletion commands/publish/lib/get-current-tags.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const npa = require("npm-package-arg");
const childProcess = require("@lerna/child-process");

Expand Down
2 changes: 1 addition & 1 deletion commands/publish/lib/get-tagged-packages.js
@@ -1,7 +1,7 @@
"use strict";

const path = require("path");
const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = getTaggedPackages;
Expand Down
2 changes: 1 addition & 1 deletion commands/publish/lib/get-unpublished-packages.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const pMap = require("p-map");
const getPackument = require("pacote/packument");

Expand Down
2 changes: 1 addition & 1 deletion commands/publish/lib/git-checkout.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = gitCheckout;
Expand Down
1 change: 1 addition & 0 deletions commands/publish/package.json
Expand Up @@ -57,6 +57,7 @@
"libnpmaccess": "^3.0.1",
"npm-package-arg": "^6.1.0",
"npm-registry-fetch": "^3.9.0",
"npmlog": "^4.1.2",
"p-finally": "^1.0.0",
"p-map": "^1.2.0",
"p-pipe": "^1.2.0",
Expand Down
2 changes: 1 addition & 1 deletion commands/version/command.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const semver = require("semver");

/**
Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/get-current-branch.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = currentBranch;
Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/git-add.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const path = require("path");
const slash = require("slash");
const childProcess = require("@lerna/child-process");
Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/git-commit.js
@@ -1,7 +1,7 @@
"use strict";

const { EOL } = require("os");
const log = require("libnpm/log");
const log = require("npmlog");
const tempWrite = require("temp-write");
const childProcess = require("@lerna/child-process");

Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/git-push.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = gitPush;
Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/git-tag.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = gitTag;
Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/is-anything-committed.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = isAnythingCommitted;
Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/is-behind-upstream.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = isBehindUpstream;
Expand Down
2 changes: 1 addition & 1 deletion commands/version/lib/remote-branch-exists.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const childProcess = require("@lerna/child-process");

module.exports = remoteBranchExists;
Expand Down
1 change: 1 addition & 0 deletions commands/version/package.json
Expand Up @@ -47,6 +47,7 @@
"dedent": "^0.7.0",
"libnpm": "^2.0.1",
"minimatch": "^3.0.4",
"npmlog": "^4.1.2",
"p-map": "^1.2.0",
"p-pipe": "^1.2.0",
"p-reduce": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion core/cli/index.js
@@ -1,7 +1,7 @@
"use strict";

const dedent = require("dedent");
const log = require("libnpm/log");
const log = require("npmlog");
const yargs = require("yargs/yargs");
const globalOptions = require("@lerna/global-options");

Expand Down
1 change: 1 addition & 0 deletions core/cli/package.json
Expand Up @@ -36,6 +36,7 @@
"@lerna/global-options": "file:../global-options",
"dedent": "^0.7.0",
"libnpm": "^2.0.1",
"npmlog": "^4.1.2",
"yargs": "^12.0.1"
}
}
2 changes: 1 addition & 1 deletion core/command/__tests__/command.test.js
Expand Up @@ -3,7 +3,7 @@
"use strict";

const fs = require("fs-extra");
const log = require("libnpm/log");
const log = require("npmlog");
const path = require("path");
const tempy = require("tempy");

Expand Down
2 changes: 1 addition & 1 deletion core/command/index.js
Expand Up @@ -3,7 +3,7 @@
const _ = require("lodash");
const dedent = require("dedent");
const execa = require("execa");
const log = require("libnpm/log");
const log = require("npmlog");

const PackageGraph = require("@lerna/package-graph");
const Project = require("@lerna/project");
Expand Down
2 changes: 1 addition & 1 deletion core/command/lib/log-package-error.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");

module.exports = logPackageError;

Expand Down
2 changes: 1 addition & 1 deletion core/command/lib/warn-if-hanging.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const ChildProcessUtilities = require("@lerna/child-process");

module.exports = warnIfHanging;
Expand Down
3 changes: 2 additions & 1 deletion core/command/package.json
Expand Up @@ -40,6 +40,7 @@
"execa": "^1.0.0",
"is-ci": "^1.0.10",
"libnpm": "^2.0.1",
"lodash": "^4.17.5"
"lodash": "^4.17.5",
"npmlog": "^4.1.2"
}
}
2 changes: 1 addition & 1 deletion core/conventional-commits/lib/get-changelog-config.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const npa = require("npm-package-arg");
const pify = require("pify");
const ValidationError = require("@lerna/validation-error");
Expand Down
2 changes: 1 addition & 1 deletion core/conventional-commits/lib/recommend-version.js
@@ -1,7 +1,7 @@
"use strict";

const conventionalRecommendedBump = require("conventional-recommended-bump");
const log = require("libnpm/log");
const log = require("npmlog");
const semver = require("semver");
const getChangelogConfig = require("./get-changelog-config");

Expand Down
2 changes: 1 addition & 1 deletion core/conventional-commits/lib/update-changelog.js
Expand Up @@ -3,7 +3,7 @@
const conventionalChangelogCore = require("conventional-changelog-core");
const fs = require("fs-extra");
const getStream = require("get-stream");
const log = require("libnpm/log");
const log = require("npmlog");
const { BLANK_LINE, CHANGELOG_HEADER, EOL } = require("./constants");
const getChangelogConfig = require("./get-changelog-config");
const makeBumpOnlyFilter = require("./make-bump-only-filter");
Expand Down
1 change: 1 addition & 0 deletions core/conventional-commits/package.json
Expand Up @@ -39,6 +39,7 @@
"get-stream": "^4.0.0",
"libnpm": "^2.0.1",
"npm-package-arg": "^6.1.0",
"npmlog": "^4.1.2",
"pify": "^3.0.0",
"semver": "^5.5.0"
}
Expand Down
2 changes: 1 addition & 1 deletion core/lerna/cli.js
Expand Up @@ -6,7 +6,7 @@
const importLocal = require("import-local");

if (importLocal(__filename)) {
require("libnpm/log").info("cli", "using local version of lerna");
require("npmlog").info("cli", "using local version of lerna");
} else {
require(".")(process.argv.slice(2));
}
3 changes: 2 additions & 1 deletion core/lerna/package.json
Expand Up @@ -50,6 +50,7 @@
"@lerna/run": "file:../../commands/run",
"@lerna/version": "file:../../commands/version",
"import-local": "^1.0.0",
"libnpm": "^2.0.1"
"libnpm": "^2.0.1",
"npmlog": "^4.1.2"
}
}
2 changes: 1 addition & 1 deletion core/project/index.js
Expand Up @@ -5,7 +5,7 @@ const dedent = require("dedent");
const globby = require("globby");
const globParent = require("glob-parent");
const loadJsonFile = require("load-json-file");
const log = require("libnpm/log");
const log = require("npmlog");
const pMap = require("p-map");
const path = require("path");
const writeJsonFile = require("write-json-file");
Expand Down
2 changes: 1 addition & 1 deletion core/project/lib/deprecate-config.js
@@ -1,7 +1,7 @@
"use strict";

const dotProp = require("dot-prop");
const log = require("libnpm/log");
const log = require("npmlog");
const path = require("path");

module.exports = compose(
Expand Down
1 change: 1 addition & 0 deletions core/project/package.json
Expand Up @@ -40,6 +40,7 @@
"globby": "^8.0.1",
"libnpm": "^2.0.1",
"load-json-file": "^4.0.0",
"npmlog": "^4.1.2",
"p-map": "^1.2.0",
"resolve-from": "^4.0.0",
"write-json-file": "^2.3.0"
Expand Down
2 changes: 1 addition & 1 deletion core/prompt/index.js
@@ -1,7 +1,7 @@
"use strict";

const inquirer = require("inquirer");
const log = require("libnpm/log");
const log = require("npmlog");

exports.confirm = confirm;
exports.select = select;
Expand Down
3 changes: 2 additions & 1 deletion core/prompt/package.json
Expand Up @@ -31,6 +31,7 @@
},
"dependencies": {
"inquirer": "^6.2.0",
"libnpm": "^2.0.1"
"libnpm": "^2.0.1",
"npmlog": "^4.1.2"
}
}
3 changes: 2 additions & 1 deletion core/validation-error/package.json
Expand Up @@ -30,6 +30,7 @@
"test": "echo \"Run tests from root\" && exit 1"
},
"dependencies": {
"libnpm": "^2.0.1"
"libnpm": "^2.0.1",
"npmlog": "^4.1.2"
}
}
2 changes: 1 addition & 1 deletion core/validation-error/validation-error.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");

class ValidationError extends Error {
constructor(prefix, message, ...rest) {
Expand Down
2 changes: 1 addition & 1 deletion helpers/logging-output/index.js
@@ -1,6 +1,6 @@
"use strict";

const log = require("libnpm/log");
const log = require("npmlog");
const multiLineTrimRight = require("@lerna-test/multi-line-trim-right");

module.exports = loggingOutput;
Expand Down
2 changes: 1 addition & 1 deletion helpers/logging-output/package.json
Expand Up @@ -7,6 +7,6 @@
"license": "MIT",
"dependencies": {
"@lerna-test/multi-line-trim-right": "file:../multi-line-trim-right",
"libnpm": "^2.0.1"
"npmlog": "^4.1.2"
}
}
2 changes: 1 addition & 1 deletion helpers/sawmill/index.js
@@ -1,7 +1,7 @@
"use strict";

const concat = require("concat-stream");
const log = require("libnpm/log");
const log = require("npmlog");

module.exports = sawmill;

Expand Down
2 changes: 1 addition & 1 deletion helpers/sawmill/package.json
Expand Up @@ -7,6 +7,6 @@
"license": "MIT",
"dependencies": {
"concat-stream": "^1.6.2",
"libnpm": "^2.0.1"
"npmlog": "^4.1.2"
}
}

0 comments on commit 571c2e2

Please sign in to comment.