@depup/lerna 9.0.5-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +88 -0
- package/dist/cli.js +50 -0
- package/dist/commands/changed/command.js +5806 -0
- package/dist/commands/changed/index.js +5195 -0
- package/dist/commands/clean/command.js +6271 -0
- package/dist/commands/clean/index.js +6157 -0
- package/dist/commands/diff/command.js +5313 -0
- package/dist/commands/diff/index.js +4742 -0
- package/dist/commands/diff/lib/get-last-commit.js +4240 -0
- package/dist/commands/diff/lib/has-commit.js +4233 -0
- package/dist/commands/exec/command.js +6010 -0
- package/dist/commands/exec/index.js +5337 -0
- package/dist/commands/import/command.js +5500 -0
- package/dist/commands/import/index.js +4931 -0
- package/dist/commands/info/command.js +5229 -0
- package/dist/commands/info/index.js +4685 -0
- package/dist/commands/init/command.js +5440 -0
- package/dist/commands/init/index.js +4872 -0
- package/dist/commands/list/command.js +5974 -0
- package/dist/commands/list/index.js +5309 -0
- package/dist/commands/publish/command.js +9271 -0
- package/dist/commands/publish/index.js +8771 -0
- package/dist/commands/publish/lib/create-temp-licenses.js +64 -0
- package/dist/commands/publish/lib/fetch-config.js +4763 -0
- package/dist/commands/publish/lib/get-current-sha.js +4764 -0
- package/dist/commands/publish/lib/get-current-tags.js +4776 -0
- package/dist/commands/publish/lib/get-npm-username.js +4886 -0
- package/dist/commands/publish/lib/get-packages-without-license.js +53 -0
- package/dist/commands/publish/lib/get-profile-data.js +4802 -0
- package/dist/commands/publish/lib/get-two-factor-auth-required.js +4855 -0
- package/dist/commands/publish/lib/get-whoami.js +4798 -0
- package/dist/commands/publish/lib/git-checkout.js +4761 -0
- package/dist/commands/publish/lib/remove-temp-licenses.js +54 -0
- package/dist/commands/publish/lib/verify-npm-package-access.js +4848 -0
- package/dist/commands/run/command.js +6229 -0
- package/dist/commands/run/index.js +5534 -0
- package/dist/commands/version/command.js +7415 -0
- package/dist/commands/version/index.js +7100 -0
- package/dist/commands/version/lib/create-release.js +4892 -0
- package/dist/commands/version/lib/get-current-branch.js +4764 -0
- package/dist/commands/version/lib/git-add.js +4817 -0
- package/dist/commands/version/lib/git-commit.js +4788 -0
- package/dist/commands/version/lib/git-push.js +4769 -0
- package/dist/commands/version/lib/git-tag.js +4771 -0
- package/dist/commands/version/lib/is-anything-committed.js +4765 -0
- package/dist/commands/version/lib/is-behind-upstream.js +4780 -0
- package/dist/commands/version/lib/is-breaking-change.js +61 -0
- package/dist/commands/version/lib/prompt-version.js +4833 -0
- package/dist/commands/version/lib/remote-branch-exists.js +4768 -0
- package/dist/commands/version/lib/update-lockfile-version.js +4791 -0
- package/dist/index.js +13093 -0
- package/dist/libs/child-process/src/forked-strong-log-transformer.d.ts +19 -0
- package/dist/libs/child-process/src/index.d.ts +46 -0
- package/dist/libs/child-process/src/set-exit-code.d.ts +1 -0
- package/dist/libs/commands/changed/src/command.d.ts +6 -0
- package/dist/libs/commands/changed/src/index.d.ts +15 -0
- package/dist/libs/commands/clean/src/command.d.ts +6 -0
- package/dist/libs/commands/diff/src/command.d.ts +6 -0
- package/dist/libs/commands/diff/src/index.d.ts +12 -0
- package/dist/libs/commands/diff/src/lib/get-last-commit.d.ts +7 -0
- package/dist/libs/commands/diff/src/lib/has-commit.d.ts +7 -0
- package/dist/libs/commands/exec/src/command.d.ts +6 -0
- package/dist/libs/commands/exec/src/index.d.ts +35 -0
- package/dist/libs/commands/import/src/command.d.ts +6 -0
- package/dist/libs/commands/import/src/index.d.ts +36 -0
- package/dist/libs/commands/info/src/command.d.ts +6 -0
- package/dist/libs/commands/info/src/index.d.ts +6 -0
- package/dist/libs/commands/init/src/command.d.ts +6 -0
- package/dist/libs/commands/init/src/index.d.ts +37 -0
- package/dist/libs/commands/list/src/command.d.ts +6 -0
- package/dist/libs/commands/list/src/index.d.ts +8 -0
- package/dist/libs/commands/publish/src/command.d.ts +6 -0
- package/dist/libs/commands/run/src/command.d.ts +7 -0
- package/dist/libs/commands/run/src/index.d.ts +39 -0
- package/dist/libs/commands/version/src/command.d.ts +6 -0
- package/dist/libs/core/src/index.d.ts +46 -0
- package/dist/libs/core/src/lib/add-dependencies.d.ts +2 -0
- package/dist/libs/core/src/lib/add-dependents.d.ts +2 -0
- package/dist/libs/core/src/lib/check-working-tree.d.ts +12 -0
- package/dist/libs/core/src/lib/cli.d.ts +14 -0
- package/dist/libs/core/src/lib/collect-uncommitted.d.ts +12 -0
- package/dist/libs/core/src/lib/collect-updates/collect-project-updates.d.ts +29 -0
- package/dist/libs/core/src/lib/collect-updates/has-tags.d.ts +6 -0
- package/dist/libs/core/src/lib/collect-updates/index.d.ts +1 -0
- package/dist/libs/core/src/lib/collect-updates/make-diff-predicate.d.ts +3 -0
- package/dist/libs/core/src/lib/command/clean-stack.d.ts +1 -0
- package/dist/libs/core/src/lib/command/create-project-graph-with-packages.d.ts +5 -0
- package/dist/libs/core/src/lib/command/default-options.d.ts +2 -0
- package/dist/libs/core/src/lib/command/detect-projects.d.ts +6 -0
- package/dist/libs/core/src/lib/command/index.d.ts +80 -0
- package/dist/libs/core/src/lib/command/is-git-initialized.d.ts +1 -0
- package/dist/libs/core/src/lib/command/log-package-error.d.ts +1 -0
- package/dist/libs/core/src/lib/command/warn-if-hanging.d.ts +1 -0
- package/dist/libs/core/src/lib/conventional-commits/apply-build-metadata.d.ts +4 -0
- package/dist/libs/core/src/lib/conventional-commits/constants.d.ts +17 -0
- package/dist/libs/core/src/lib/conventional-commits/get-changelog-config.d.ts +2 -0
- package/dist/libs/core/src/lib/conventional-commits/index.d.ts +3 -0
- package/dist/libs/core/src/lib/conventional-commits/make-bump-only-filter.d.ts +2 -0
- package/dist/libs/core/src/lib/conventional-commits/read-existing-changelog.d.ts +6 -0
- package/dist/libs/core/src/lib/conventional-commits/recommend-version.d.ts +6 -0
- package/dist/libs/core/src/lib/conventional-commits/update-changelog.d.ts +8 -0
- package/dist/libs/core/src/lib/corepack/exec-package-manager.d.ts +4 -0
- package/dist/libs/core/src/lib/corepack/index.d.ts +1 -0
- package/dist/libs/core/src/lib/corepack/is-corepack-enabled.d.ts +1 -0
- package/dist/libs/core/src/lib/cycles/get-cycles.d.ts +6 -0
- package/dist/libs/core/src/lib/cycles/index.d.ts +3 -0
- package/dist/libs/core/src/lib/cycles/merge-overlapping-cycles.d.ts +6 -0
- package/dist/libs/core/src/lib/cycles/report-cycles.d.ts +1 -0
- package/dist/libs/core/src/lib/describe-ref.d.ts +17 -0
- package/dist/libs/core/src/lib/filter-options.d.ts +15 -0
- package/dist/libs/core/src/lib/filter-projects.d.ts +4 -0
- package/dist/libs/core/src/lib/get-npm-exec-opts.d.ts +11 -0
- package/dist/libs/core/src/lib/get-package-manifest-path.d.ts +2 -0
- package/dist/libs/core/src/lib/get-packages-for-option.d.ts +4 -0
- package/dist/libs/core/src/lib/get-packed.d.ts +1 -0
- package/dist/libs/core/src/lib/git-checkout.d.ts +7 -0
- package/dist/libs/core/src/lib/has-npm-version.d.ts +1 -0
- package/dist/libs/core/src/lib/listable-format-projects.d.ts +24 -0
- package/dist/libs/core/src/lib/listable-options.d.ts +54 -0
- package/dist/libs/core/src/lib/log-packed.d.ts +14 -0
- package/dist/libs/core/src/lib/npm-conf/conf.d.ts +22 -0
- package/dist/libs/core/src/lib/npm-conf/env-replace.d.ts +1 -0
- package/dist/libs/core/src/lib/npm-conf/find-prefix.d.ts +1 -0
- package/dist/libs/core/src/lib/npm-conf/nerf-dart.d.ts +1 -0
- package/dist/libs/core/src/lib/npm-conf/parse-field.d.ts +1 -0
- package/dist/libs/core/src/lib/npm-install.d.ts +2 -0
- package/dist/libs/core/src/lib/npm-publish.d.ts +20 -0
- package/dist/libs/core/src/lib/npm-run-script.d.ts +2 -0
- package/dist/libs/core/src/lib/npmlog/are-we-there-yet/tracker-base.d.ts +6 -0
- package/dist/libs/core/src/lib/npmlog/are-we-there-yet/tracker-group.d.ts +21 -0
- package/dist/libs/core/src/lib/npmlog/are-we-there-yet/tracker-stream.d.ts +14 -0
- package/dist/libs/core/src/lib/npmlog/are-we-there-yet/tracker.d.ts +10 -0
- package/dist/libs/core/src/lib/npmlog/gauge/index.d.ts +43 -0
- package/dist/libs/core/src/lib/npmlog/index.d.ts +76 -0
- package/dist/libs/core/src/lib/oidc.d.ts +25 -0
- package/dist/libs/core/src/lib/otplease.d.ts +15 -0
- package/dist/libs/core/src/lib/output.d.ts +1 -0
- package/dist/libs/core/src/lib/pack-directory.d.ts +30 -0
- package/dist/libs/core/src/lib/package.d.ts +128 -0
- package/dist/libs/core/src/lib/prerelease-id-from-version.d.ts +1 -0
- package/dist/libs/core/src/lib/profiler.d.ts +20 -0
- package/dist/libs/core/src/lib/project/apply-extends.d.ts +4 -0
- package/dist/libs/core/src/lib/project/index.d.ts +82 -0
- package/dist/libs/core/src/lib/project/make-file-finder.d.ts +2 -0
- package/dist/libs/core/src/lib/project/shallow-extend.d.ts +1 -0
- package/dist/libs/core/src/lib/project-graph-with-packages.d.ts +23 -0
- package/dist/libs/core/src/lib/prompt.d.ts +19 -0
- package/dist/libs/core/src/lib/pulse-till-done.d.ts +2 -0
- package/dist/libs/core/src/lib/rimraf-dir.d.ts +1 -0
- package/dist/libs/core/src/lib/run-lifecycle.d.ts +21 -0
- package/dist/libs/core/src/lib/run-projects-topologically.d.ts +10 -0
- package/dist/libs/core/src/lib/scm-clients/github/create-github-client.d.ts +4 -0
- package/dist/libs/core/src/lib/scm-clients/gitlab/create-gitlab-client.d.ts +11 -0
- package/dist/libs/core/src/lib/scm-clients/gitlab/gitlab-client.d.ts +13 -0
- package/dist/libs/core/src/lib/scm-clients/index.d.ts +2 -0
- package/dist/libs/core/src/lib/temp-write.d.ts +5 -0
- package/dist/libs/core/src/lib/timer.d.ts +1 -0
- package/dist/libs/core/src/lib/toposort-projects.d.ts +2 -0
- package/dist/libs/core/src/lib/validation-error.d.ts +4 -0
- package/dist/libs/core/src/lib/write-log-file.d.ts +1 -0
- package/dist/libs/legacy-core/src/index.d.ts +10 -0
- package/dist/libs/legacy-core/src/lib/collect-updates/collect-dependents.d.ts +5 -0
- package/dist/libs/legacy-core/src/lib/collect-updates/collect-packages.d.ts +10 -0
- package/dist/libs/legacy-core/src/lib/collect-updates/has-tags.d.ts +5 -0
- package/dist/libs/legacy-core/src/lib/collect-updates/index.d.ts +19 -0
- package/dist/libs/legacy-core/src/lib/collect-updates/make-diff-predicate.d.ts +7 -0
- package/dist/libs/legacy-core/src/lib/command/clean-stack.d.ts +1 -0
- package/dist/libs/legacy-core/src/lib/command/default-options.d.ts +2 -0
- package/dist/libs/legacy-core/src/lib/command/index.d.ts +40 -0
- package/dist/libs/legacy-core/src/lib/command/log-package-error.d.ts +1 -0
- package/dist/libs/legacy-core/src/lib/command/warn-if-hanging.d.ts +1 -0
- package/dist/libs/legacy-core/src/lib/create-symlink.d.ts +4 -0
- package/dist/libs/legacy-core/src/lib/filter-packages.d.ts +13 -0
- package/dist/libs/legacy-core/src/lib/get-filtered-packages.d.ts +7 -0
- package/dist/libs/legacy-core/src/lib/listable-format.d.ts +8 -0
- package/dist/libs/legacy-core/src/lib/package-graph/cyclic-package-graph-node.d.ts +37 -0
- package/dist/libs/legacy-core/src/lib/package-graph/index.d.ts +74 -0
- package/dist/libs/legacy-core/src/lib/package-graph/package-graph-node.d.ts +32 -0
- package/dist/libs/legacy-core/src/lib/package-graph/report-cycles.d.ts +1 -0
- package/dist/libs/legacy-core/src/lib/query-graph.d.ts +27 -0
- package/dist/libs/legacy-core/src/lib/resolve-symlink.d.ts +1 -0
- package/dist/libs/legacy-core/src/lib/run-topologically.d.ts +16 -0
- package/dist/libs/legacy-core/src/lib/symlink-binary/index.d.ts +5 -0
- package/dist/libs/legacy-core/src/lib/symlink-dependencies.d.ts +9 -0
- package/dist/libs/legacy-core/src/lib/write-log-file.d.ts +1 -0
- package/dist/migrations/add-schema-config/add-schema-config.js +34 -0
- package/dist/migrations/remove-invalid-init-config/remove-invalid-init-config.js +34 -0
- package/dist/migrations/remove-invalid-lerna-config/remove-invalid-lerna-config.js +34 -0
- package/dist/migrations/remove-invalid-use-workspaces/remove-invalid-use-workspaces.js +34 -0
- package/dist/migrations/remove-unnecessary-use-nx/remove-unnecessary-use-nx.js +34 -0
- package/dist/migrations/update-options-from-legacy-deprecate-config/update-options-from-legacy-deprecate-config.js +96 -0
- package/dist/packages/lerna/src/commands/add-caching/command.d.ts +6 -0
- package/dist/packages/lerna/src/commands/add-caching/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/changed/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/changed/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/clean/command.d.ts +0 -0
- package/dist/packages/lerna/src/commands/clean/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/diff/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/diff/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/diff/lib/get-last-commit.d.ts +1 -0
- package/dist/packages/lerna/src/commands/diff/lib/has-commit.d.ts +1 -0
- package/dist/packages/lerna/src/commands/exec/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/exec/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/import/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/import/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/info/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/info/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/init/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/init/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/list/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/list/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/publish/command.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/publish/lib/create-temp-licenses.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/fetch-config.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/get-current-sha.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/get-current-tags.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/get-npm-username.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/get-packages-without-license.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/get-profile-data.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/get-two-factor-auth-required.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/get-whoami.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/git-checkout.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/remove-temp-licenses.d.ts +0 -0
- package/dist/packages/lerna/src/commands/publish/lib/verify-npm-package-access.d.ts +0 -0
- package/dist/packages/lerna/src/commands/repair/command.d.ts +6 -0
- package/dist/packages/lerna/src/commands/repair/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/run/command.d.ts +1 -0
- package/dist/packages/lerna/src/commands/run/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/version/command.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/index.d.ts +1 -0
- package/dist/packages/lerna/src/commands/version/lib/create-release.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/get-current-branch.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/git-add.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/git-commit.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/git-push.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/git-tag.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/is-anything-committed.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/is-behind-upstream.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/is-breaking-change.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/prompt-version.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/remote-branch-exists.d.ts +0 -0
- package/dist/packages/lerna/src/commands/version/lib/update-lockfile-version.d.ts +0 -0
- package/dist/packages/lerna/src/commands/watch/command.d.ts +6 -0
- package/dist/packages/lerna/src/commands/watch/index.d.ts +1 -0
- package/dist/packages/lerna/src/index.d.ts +1 -0
- package/dist/packages/lerna/src/migrations/add-schema-config/add-schema-config.d.ts +2 -0
- package/dist/packages/lerna/src/migrations/remove-invalid-init-config/remove-invalid-init-config.d.ts +2 -0
- package/dist/packages/lerna/src/migrations/remove-invalid-lerna-config/remove-invalid-lerna-config.d.ts +2 -0
- package/dist/packages/lerna/src/migrations/remove-invalid-use-workspaces/remove-invalid-use-workspaces.d.ts +2 -0
- package/dist/packages/lerna/src/migrations/remove-unnecessary-use-nx/remove-unnecessary-use-nx.d.ts +2 -0
- package/dist/packages/lerna/src/migrations/update-options-from-legacy-deprecate-config/update-options-from-legacy-deprecate-config.d.ts +9 -0
- package/dist/packages/lerna/src/utils/detect-projects.d.ts +4 -0
- package/dist/packages/lerna/src/utils/index.d.ts +1 -0
- package/dist/utils/index.js +4362 -0
- package/migrations.json +40 -0
- package/package.json +376 -0
- package/schemas/lerna-schema.json +1855 -0
package/README.md
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# @depup/lerna
|
|
2
|
+
|
|
3
|
+
> Dependency-bumped version of [lerna](https://www.npmjs.com/package/lerna)
|
|
4
|
+
|
|
5
|
+
Generated by [DepUp](https://github.com/depup/npm) -- all production
|
|
6
|
+
dependencies bumped to latest versions.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @depup/lerna
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
| Field | Value |
|
|
15
|
+
|-------|-------|
|
|
16
|
+
| Original | [lerna](https://www.npmjs.com/package/lerna) @ 9.0.5 |
|
|
17
|
+
| Processed | 2026-03-09 |
|
|
18
|
+
| Smoke test | failed |
|
|
19
|
+
| Deps updated | 58 |
|
|
20
|
+
|
|
21
|
+
## Dependency Changes
|
|
22
|
+
|
|
23
|
+
| Dependency | From | To |
|
|
24
|
+
|------------|------|-----|
|
|
25
|
+
| @npmcli/arborist | 9.1.6 | ^9.4.0 |
|
|
26
|
+
| @npmcli/package-json | 7.0.2 | ^7.0.5 |
|
|
27
|
+
| @npmcli/run-script | 10.0.3 | ^10.0.4 |
|
|
28
|
+
| @octokit/rest | 20.1.2 | ^22.0.1 |
|
|
29
|
+
| aproba | 2.0.0 | ^2.1.0 |
|
|
30
|
+
| byte-size | 8.1.1 | ^9.0.1 |
|
|
31
|
+
| chalk | 4.1.0 | ^5.6.2 |
|
|
32
|
+
| cmd-shim | 6.0.3 | ^8.0.0 |
|
|
33
|
+
| conventional-changelog-angular | 7.0.0 | ^8.3.0 |
|
|
34
|
+
| conventional-changelog-core | 5.0.1 | ^9.0.0 |
|
|
35
|
+
| conventional-recommended-bump | 7.0.1 | ^11.2.0 |
|
|
36
|
+
| cosmiconfig | 9.0.0 | ^9.0.1 |
|
|
37
|
+
| dedent | 1.5.3 | ^1.7.2 |
|
|
38
|
+
| envinfo | 7.13.0 | ^7.21.0 |
|
|
39
|
+
| execa | 5.0.0 | ^9.6.1 |
|
|
40
|
+
| fs-extra | ^11.2.0 | ^11.3.4 |
|
|
41
|
+
| get-port | 5.1.1 | ^7.1.0 |
|
|
42
|
+
| get-stream | 6.0.0 | ^9.0.1 |
|
|
43
|
+
| git-url-parse | 14.0.0 | ^16.1.0 |
|
|
44
|
+
| import-local | 3.1.0 | ^3.2.0 |
|
|
45
|
+
| ini | ^1.3.8 | ^6.0.0 |
|
|
46
|
+
| init-package-json | 8.2.2 | ^8.2.5 |
|
|
47
|
+
| inquirer | 12.9.6 | ^13.3.0 |
|
|
48
|
+
| is-ci | 3.0.1 | ^4.1.0 |
|
|
49
|
+
| is-stream | 2.0.0 | ^4.0.1 |
|
|
50
|
+
| libnpmpublish | 11.1.2 | ^11.1.3 |
|
|
51
|
+
| load-json-file | 6.2.0 | ^7.0.1 |
|
|
52
|
+
| make-dir | 4.0.0 | ^5.1.0 |
|
|
53
|
+
| make-fetch-happen | 15.0.2 | ^15.0.4 |
|
|
54
|
+
| minimatch | 3.1.4 | ^10.2.4 |
|
|
55
|
+
| multimatch | 5.0.0 | ^8.0.0 |
|
|
56
|
+
| npm-package-arg | 13.0.1 | ^13.0.2 |
|
|
57
|
+
| npm-packlist | 10.0.3 | ^10.0.4 |
|
|
58
|
+
| npm-registry-fetch | 19.1.0 | ^19.1.1 |
|
|
59
|
+
| p-map | 4.0.0 | ^7.0.4 |
|
|
60
|
+
| p-map-series | 2.1.0 | ^3.0.0 |
|
|
61
|
+
| p-pipe | 3.1.0 | ^4.0.0 |
|
|
62
|
+
| p-queue | 6.6.2 | ^9.1.0 |
|
|
63
|
+
| p-reduce | 2.1.0 | ^3.0.0 |
|
|
64
|
+
| p-waterfall | 2.1.1 | ^3.0.0 |
|
|
65
|
+
| pacote | 21.0.1 | ^21.4.0 |
|
|
66
|
+
| pify | 5.0.0 | ^6.1.0 |
|
|
67
|
+
| read-cmd-shim | 4.0.0 | ^6.0.0 |
|
|
68
|
+
| rimraf | ^6.1.2 | ^6.1.3 |
|
|
69
|
+
| semver | 7.7.2 | ^7.7.4 |
|
|
70
|
+
| signal-exit | 3.0.7 | ^4.1.0 |
|
|
71
|
+
| slash | 3.0.0 | ^5.1.0 |
|
|
72
|
+
| ssri | 12.0.0 | ^13.0.1 |
|
|
73
|
+
| string-width | ^4.2.3 | ^8.2.0 |
|
|
74
|
+
| tar | 7.5.8 | ^7.5.10 |
|
|
75
|
+
| temp-dir | 1.0.0 | ^3.0.0 |
|
|
76
|
+
| tinyglobby | 0.2.12 | ^0.2.15 |
|
|
77
|
+
| uuid | ^11.1.0 | ^13.0.0 |
|
|
78
|
+
| validate-npm-package-name | 6.0.2 | ^7.0.2 |
|
|
79
|
+
| write-file-atomic | 5.0.1 | ^7.0.1 |
|
|
80
|
+
| write-pkg | 4.0.0 | ^7.0.0 |
|
|
81
|
+
| yargs | 17.7.2 | ^18.0.0 |
|
|
82
|
+
| yargs-parser | 21.1.1 | ^22.0.0 |
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
Source: https://github.com/depup/npm | Original: https://www.npmjs.com/package/lerna
|
|
87
|
+
|
|
88
|
+
License inherited from the original package.
|
package/dist/cli.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// @ts-check
|
|
4
|
+
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
|
|
9
|
+
const importLocal = require("import-local");
|
|
10
|
+
|
|
11
|
+
if (importLocal(__filename)) {
|
|
12
|
+
// Minimal standalone log function to avoid needing to import full Logger
|
|
13
|
+
function minimalInfoLog(prefix, message) {
|
|
14
|
+
const stream = process.stderr;
|
|
15
|
+
const green = "\x1b[32m";
|
|
16
|
+
const magenta = "\x1b[35m";
|
|
17
|
+
const reset = "\x1b[0m";
|
|
18
|
+
const useColor = stream.isTTY;
|
|
19
|
+
|
|
20
|
+
let output = "";
|
|
21
|
+
|
|
22
|
+
if (useColor) {
|
|
23
|
+
output += green; // Info level color
|
|
24
|
+
}
|
|
25
|
+
output += "info";
|
|
26
|
+
if (useColor) {
|
|
27
|
+
output += reset;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
if (prefix) {
|
|
31
|
+
output += " ";
|
|
32
|
+
if (useColor) {
|
|
33
|
+
output += magenta; // Prefix color
|
|
34
|
+
}
|
|
35
|
+
output += prefix;
|
|
36
|
+
if (useColor) {
|
|
37
|
+
output += reset;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
output += " " + message;
|
|
42
|
+
|
|
43
|
+
stream.write(output + "\n");
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
minimalInfoLog("cli", "using local version of lerna");
|
|
47
|
+
} else {
|
|
48
|
+
// @ts-ignore
|
|
49
|
+
require(".")(process.argv.slice(2));
|
|
50
|
+
}
|