@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/migrations.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generators": {
|
|
3
|
+
"add-schema-config": {
|
|
4
|
+
"cli": "nx",
|
|
5
|
+
"version": "7.0.0-alpha.5",
|
|
6
|
+
"description": "Add `$schema` config to lerna.json if not already present to allow for IDE validation of lerna.json",
|
|
7
|
+
"implementation": "./dist/migrations/add-schema-config/add-schema-config"
|
|
8
|
+
},
|
|
9
|
+
"remove-invalid-init-config": {
|
|
10
|
+
"cli": "nx",
|
|
11
|
+
"version": "7.0.0-alpha.2",
|
|
12
|
+
"description": "Remove invalid `init` config from lerna.json as it is no longer applicable, given init cannot be run on an existing workspace",
|
|
13
|
+
"implementation": "./dist/migrations/remove-invalid-init-config/remove-invalid-init-config"
|
|
14
|
+
},
|
|
15
|
+
"remove-invalid-lerna-config": {
|
|
16
|
+
"cli": "nx",
|
|
17
|
+
"version": "7.0.0-alpha.2",
|
|
18
|
+
"description": "Remove invalid `lerna` config from lerna.json as it is no longer used for anything",
|
|
19
|
+
"implementation": "./dist/migrations/remove-invalid-lerna-config/remove-invalid-lerna-config"
|
|
20
|
+
},
|
|
21
|
+
"remove-invalid-use-workspaces": {
|
|
22
|
+
"cli": "nx",
|
|
23
|
+
"version": "7.0.0-alpha.2",
|
|
24
|
+
"description": "Remove invalid `useWorkspaces` config from lerna.json as it no longer exists",
|
|
25
|
+
"implementation": "./dist/migrations/remove-invalid-use-workspaces/remove-invalid-use-workspaces"
|
|
26
|
+
},
|
|
27
|
+
"remove-unnecessary-use-nx": {
|
|
28
|
+
"cli": "nx",
|
|
29
|
+
"version": "6.0.0-alpha.0",
|
|
30
|
+
"description": "Remove unnecessary `useNx: true` from lerna.json as it is the default",
|
|
31
|
+
"implementation": "./dist/migrations/remove-unnecessary-use-nx/remove-unnecessary-use-nx"
|
|
32
|
+
},
|
|
33
|
+
"update-options-from-legacy-deprecate-config": {
|
|
34
|
+
"cli": "nx",
|
|
35
|
+
"version": "7.0.0-alpha.2",
|
|
36
|
+
"description": "Migrate legacy deprecated config usage to their updated counterparts",
|
|
37
|
+
"implementation": "./dist/migrations/update-options-from-legacy-deprecate-config/update-options-from-legacy-deprecate-config"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@depup/lerna",
|
|
3
|
+
"version": "9.0.5-depup.0",
|
|
4
|
+
"type": "commonjs",
|
|
5
|
+
"description": "[DepUp] Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"depup",
|
|
8
|
+
"dependency-bumped",
|
|
9
|
+
"updated-deps",
|
|
10
|
+
"lerna",
|
|
11
|
+
"monorepo",
|
|
12
|
+
"multi-package"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://lerna.js.org",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Sebastian McKenzie",
|
|
18
|
+
"email": "sebmck@gmail.com"
|
|
19
|
+
},
|
|
20
|
+
"bin": {
|
|
21
|
+
"lerna": "dist/cli.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"schemas/lerna-schema.json",
|
|
26
|
+
"migrations.json"
|
|
27
|
+
],
|
|
28
|
+
"main": "./dist/index.js",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"tag": "next"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/lerna/lerna.git",
|
|
38
|
+
"directory": "packages/lerna"
|
|
39
|
+
},
|
|
40
|
+
"nx-migrations": {
|
|
41
|
+
"migrations": "./migrations.json"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@lerna/create": "9.0.5",
|
|
45
|
+
"@npmcli/arborist": "^9.4.0",
|
|
46
|
+
"@npmcli/package-json": "^7.0.5",
|
|
47
|
+
"@npmcli/run-script": "^10.0.4",
|
|
48
|
+
"@nx/devkit": ">=21.5.2 < 23.0.0",
|
|
49
|
+
"@octokit/plugin-enterprise-rest": "6.0.1",
|
|
50
|
+
"@octokit/rest": "^22.0.1",
|
|
51
|
+
"aproba": "^2.1.0",
|
|
52
|
+
"byte-size": "^9.0.1",
|
|
53
|
+
"chalk": "^5.6.2",
|
|
54
|
+
"cmd-shim": "^8.0.0",
|
|
55
|
+
"color-support": "1.1.3",
|
|
56
|
+
"columnify": "1.6.0",
|
|
57
|
+
"console-control-strings": "^1.1.0",
|
|
58
|
+
"conventional-changelog-angular": "^8.3.0",
|
|
59
|
+
"conventional-changelog-core": "^9.0.0",
|
|
60
|
+
"conventional-recommended-bump": "^11.2.0",
|
|
61
|
+
"cosmiconfig": "^9.0.1",
|
|
62
|
+
"dedent": "^1.7.2",
|
|
63
|
+
"envinfo": "^7.21.0",
|
|
64
|
+
"execa": "^9.6.1",
|
|
65
|
+
"fs-extra": "^11.3.4",
|
|
66
|
+
"get-port": "^7.1.0",
|
|
67
|
+
"get-stream": "^9.0.1",
|
|
68
|
+
"git-url-parse": "^16.1.0",
|
|
69
|
+
"glob-parent": "6.0.2",
|
|
70
|
+
"has-unicode": "2.0.1",
|
|
71
|
+
"import-local": "^3.2.0",
|
|
72
|
+
"ini": "^6.0.0",
|
|
73
|
+
"init-package-json": "^8.2.5",
|
|
74
|
+
"inquirer": "^13.3.0",
|
|
75
|
+
"is-ci": "^4.1.0",
|
|
76
|
+
"is-stream": "^4.0.1",
|
|
77
|
+
"jest-diff": ">=30.0.0 < 31",
|
|
78
|
+
"js-yaml": "4.1.1",
|
|
79
|
+
"libnpmaccess": "10.0.3",
|
|
80
|
+
"libnpmpublish": "^11.1.3",
|
|
81
|
+
"load-json-file": "^7.0.1",
|
|
82
|
+
"make-dir": "^5.1.0",
|
|
83
|
+
"make-fetch-happen": "^15.0.4",
|
|
84
|
+
"minimatch": "^10.2.4",
|
|
85
|
+
"multimatch": "^8.0.0",
|
|
86
|
+
"npm-package-arg": "^13.0.2",
|
|
87
|
+
"npm-packlist": "^10.0.4",
|
|
88
|
+
"npm-registry-fetch": "^19.1.1",
|
|
89
|
+
"nx": ">=21.5.3 < 23.0.0",
|
|
90
|
+
"p-map": "^7.0.4",
|
|
91
|
+
"p-map-series": "^3.0.0",
|
|
92
|
+
"p-pipe": "^4.0.0",
|
|
93
|
+
"p-queue": "^9.1.0",
|
|
94
|
+
"p-reduce": "^3.0.0",
|
|
95
|
+
"p-waterfall": "^3.0.0",
|
|
96
|
+
"pacote": "^21.4.0",
|
|
97
|
+
"pify": "^6.1.0",
|
|
98
|
+
"read-cmd-shim": "^6.0.0",
|
|
99
|
+
"resolve-from": "5.0.0",
|
|
100
|
+
"rimraf": "^6.1.3",
|
|
101
|
+
"semver": "^7.7.4",
|
|
102
|
+
"set-blocking": "^2.0.0",
|
|
103
|
+
"signal-exit": "^4.1.0",
|
|
104
|
+
"slash": "^5.1.0",
|
|
105
|
+
"ssri": "^13.0.1",
|
|
106
|
+
"string-width": "^8.2.0",
|
|
107
|
+
"tar": "^7.5.10",
|
|
108
|
+
"temp-dir": "^3.0.0",
|
|
109
|
+
"through": "2.3.8",
|
|
110
|
+
"tinyglobby": "^0.2.15",
|
|
111
|
+
"typescript": ">=3 < 6",
|
|
112
|
+
"upath": "2.0.1",
|
|
113
|
+
"uuid": "^13.0.0",
|
|
114
|
+
"validate-npm-package-license": "3.0.4",
|
|
115
|
+
"validate-npm-package-name": "^7.0.2",
|
|
116
|
+
"wide-align": "1.1.5",
|
|
117
|
+
"write-file-atomic": "^7.0.1",
|
|
118
|
+
"write-pkg": "^7.0.0",
|
|
119
|
+
"yargs": "^18.0.0",
|
|
120
|
+
"yargs-parser": "^22.0.0"
|
|
121
|
+
},
|
|
122
|
+
"exports": {
|
|
123
|
+
".": "./dist/index.js",
|
|
124
|
+
"./cli": "./dist/cli.js",
|
|
125
|
+
"./commands/*": "./dist/commands/*/index.js",
|
|
126
|
+
"./commands/*/command": "./dist/commands/*/command.js",
|
|
127
|
+
"./commands/diff/lib/*": "./dist/commands/diff/lib/*.js",
|
|
128
|
+
"./commands/publish/lib/*": "./dist/commands/publish/lib/*.js",
|
|
129
|
+
"./commands/version/lib/*": "./dist/commands/version/lib/*.js",
|
|
130
|
+
"./dist/cli.js": "./dist/cli.js",
|
|
131
|
+
"./migrations/**/*": "./dist/migrations/**/*",
|
|
132
|
+
"./utils": "./dist/utils/index.js"
|
|
133
|
+
},
|
|
134
|
+
"gitHead": "18297cc14a6966003424d93688335f52d7711732",
|
|
135
|
+
"depup": {
|
|
136
|
+
"changes": {
|
|
137
|
+
"@npmcli/arborist": {
|
|
138
|
+
"from": "9.1.6",
|
|
139
|
+
"to": "^9.4.0"
|
|
140
|
+
},
|
|
141
|
+
"@npmcli/package-json": {
|
|
142
|
+
"from": "7.0.2",
|
|
143
|
+
"to": "^7.0.5"
|
|
144
|
+
},
|
|
145
|
+
"@npmcli/run-script": {
|
|
146
|
+
"from": "10.0.3",
|
|
147
|
+
"to": "^10.0.4"
|
|
148
|
+
},
|
|
149
|
+
"@octokit/rest": {
|
|
150
|
+
"from": "20.1.2",
|
|
151
|
+
"to": "^22.0.1"
|
|
152
|
+
},
|
|
153
|
+
"aproba": {
|
|
154
|
+
"from": "2.0.0",
|
|
155
|
+
"to": "^2.1.0"
|
|
156
|
+
},
|
|
157
|
+
"byte-size": {
|
|
158
|
+
"from": "8.1.1",
|
|
159
|
+
"to": "^9.0.1"
|
|
160
|
+
},
|
|
161
|
+
"chalk": {
|
|
162
|
+
"from": "4.1.0",
|
|
163
|
+
"to": "^5.6.2"
|
|
164
|
+
},
|
|
165
|
+
"cmd-shim": {
|
|
166
|
+
"from": "6.0.3",
|
|
167
|
+
"to": "^8.0.0"
|
|
168
|
+
},
|
|
169
|
+
"conventional-changelog-angular": {
|
|
170
|
+
"from": "7.0.0",
|
|
171
|
+
"to": "^8.3.0"
|
|
172
|
+
},
|
|
173
|
+
"conventional-changelog-core": {
|
|
174
|
+
"from": "5.0.1",
|
|
175
|
+
"to": "^9.0.0"
|
|
176
|
+
},
|
|
177
|
+
"conventional-recommended-bump": {
|
|
178
|
+
"from": "7.0.1",
|
|
179
|
+
"to": "^11.2.0"
|
|
180
|
+
},
|
|
181
|
+
"cosmiconfig": {
|
|
182
|
+
"from": "9.0.0",
|
|
183
|
+
"to": "^9.0.1"
|
|
184
|
+
},
|
|
185
|
+
"dedent": {
|
|
186
|
+
"from": "1.5.3",
|
|
187
|
+
"to": "^1.7.2"
|
|
188
|
+
},
|
|
189
|
+
"envinfo": {
|
|
190
|
+
"from": "7.13.0",
|
|
191
|
+
"to": "^7.21.0"
|
|
192
|
+
},
|
|
193
|
+
"execa": {
|
|
194
|
+
"from": "5.0.0",
|
|
195
|
+
"to": "^9.6.1"
|
|
196
|
+
},
|
|
197
|
+
"fs-extra": {
|
|
198
|
+
"from": "^11.2.0",
|
|
199
|
+
"to": "^11.3.4"
|
|
200
|
+
},
|
|
201
|
+
"get-port": {
|
|
202
|
+
"from": "5.1.1",
|
|
203
|
+
"to": "^7.1.0"
|
|
204
|
+
},
|
|
205
|
+
"get-stream": {
|
|
206
|
+
"from": "6.0.0",
|
|
207
|
+
"to": "^9.0.1"
|
|
208
|
+
},
|
|
209
|
+
"git-url-parse": {
|
|
210
|
+
"from": "14.0.0",
|
|
211
|
+
"to": "^16.1.0"
|
|
212
|
+
},
|
|
213
|
+
"import-local": {
|
|
214
|
+
"from": "3.1.0",
|
|
215
|
+
"to": "^3.2.0"
|
|
216
|
+
},
|
|
217
|
+
"ini": {
|
|
218
|
+
"from": "^1.3.8",
|
|
219
|
+
"to": "^6.0.0"
|
|
220
|
+
},
|
|
221
|
+
"init-package-json": {
|
|
222
|
+
"from": "8.2.2",
|
|
223
|
+
"to": "^8.2.5"
|
|
224
|
+
},
|
|
225
|
+
"inquirer": {
|
|
226
|
+
"from": "12.9.6",
|
|
227
|
+
"to": "^13.3.0"
|
|
228
|
+
},
|
|
229
|
+
"is-ci": {
|
|
230
|
+
"from": "3.0.1",
|
|
231
|
+
"to": "^4.1.0"
|
|
232
|
+
},
|
|
233
|
+
"is-stream": {
|
|
234
|
+
"from": "2.0.0",
|
|
235
|
+
"to": "^4.0.1"
|
|
236
|
+
},
|
|
237
|
+
"libnpmpublish": {
|
|
238
|
+
"from": "11.1.2",
|
|
239
|
+
"to": "^11.1.3"
|
|
240
|
+
},
|
|
241
|
+
"load-json-file": {
|
|
242
|
+
"from": "6.2.0",
|
|
243
|
+
"to": "^7.0.1"
|
|
244
|
+
},
|
|
245
|
+
"make-dir": {
|
|
246
|
+
"from": "4.0.0",
|
|
247
|
+
"to": "^5.1.0"
|
|
248
|
+
},
|
|
249
|
+
"make-fetch-happen": {
|
|
250
|
+
"from": "15.0.2",
|
|
251
|
+
"to": "^15.0.4"
|
|
252
|
+
},
|
|
253
|
+
"minimatch": {
|
|
254
|
+
"from": "3.1.4",
|
|
255
|
+
"to": "^10.2.4"
|
|
256
|
+
},
|
|
257
|
+
"multimatch": {
|
|
258
|
+
"from": "5.0.0",
|
|
259
|
+
"to": "^8.0.0"
|
|
260
|
+
},
|
|
261
|
+
"npm-package-arg": {
|
|
262
|
+
"from": "13.0.1",
|
|
263
|
+
"to": "^13.0.2"
|
|
264
|
+
},
|
|
265
|
+
"npm-packlist": {
|
|
266
|
+
"from": "10.0.3",
|
|
267
|
+
"to": "^10.0.4"
|
|
268
|
+
},
|
|
269
|
+
"npm-registry-fetch": {
|
|
270
|
+
"from": "19.1.0",
|
|
271
|
+
"to": "^19.1.1"
|
|
272
|
+
},
|
|
273
|
+
"p-map": {
|
|
274
|
+
"from": "4.0.0",
|
|
275
|
+
"to": "^7.0.4"
|
|
276
|
+
},
|
|
277
|
+
"p-map-series": {
|
|
278
|
+
"from": "2.1.0",
|
|
279
|
+
"to": "^3.0.0"
|
|
280
|
+
},
|
|
281
|
+
"p-pipe": {
|
|
282
|
+
"from": "3.1.0",
|
|
283
|
+
"to": "^4.0.0"
|
|
284
|
+
},
|
|
285
|
+
"p-queue": {
|
|
286
|
+
"from": "6.6.2",
|
|
287
|
+
"to": "^9.1.0"
|
|
288
|
+
},
|
|
289
|
+
"p-reduce": {
|
|
290
|
+
"from": "2.1.0",
|
|
291
|
+
"to": "^3.0.0"
|
|
292
|
+
},
|
|
293
|
+
"p-waterfall": {
|
|
294
|
+
"from": "2.1.1",
|
|
295
|
+
"to": "^3.0.0"
|
|
296
|
+
},
|
|
297
|
+
"pacote": {
|
|
298
|
+
"from": "21.0.1",
|
|
299
|
+
"to": "^21.4.0"
|
|
300
|
+
},
|
|
301
|
+
"pify": {
|
|
302
|
+
"from": "5.0.0",
|
|
303
|
+
"to": "^6.1.0"
|
|
304
|
+
},
|
|
305
|
+
"read-cmd-shim": {
|
|
306
|
+
"from": "4.0.0",
|
|
307
|
+
"to": "^6.0.0"
|
|
308
|
+
},
|
|
309
|
+
"rimraf": {
|
|
310
|
+
"from": "^6.1.2",
|
|
311
|
+
"to": "^6.1.3"
|
|
312
|
+
},
|
|
313
|
+
"semver": {
|
|
314
|
+
"from": "7.7.2",
|
|
315
|
+
"to": "^7.7.4"
|
|
316
|
+
},
|
|
317
|
+
"signal-exit": {
|
|
318
|
+
"from": "3.0.7",
|
|
319
|
+
"to": "^4.1.0"
|
|
320
|
+
},
|
|
321
|
+
"slash": {
|
|
322
|
+
"from": "3.0.0",
|
|
323
|
+
"to": "^5.1.0"
|
|
324
|
+
},
|
|
325
|
+
"ssri": {
|
|
326
|
+
"from": "12.0.0",
|
|
327
|
+
"to": "^13.0.1"
|
|
328
|
+
},
|
|
329
|
+
"string-width": {
|
|
330
|
+
"from": "^4.2.3",
|
|
331
|
+
"to": "^8.2.0"
|
|
332
|
+
},
|
|
333
|
+
"tar": {
|
|
334
|
+
"from": "7.5.8",
|
|
335
|
+
"to": "^7.5.10"
|
|
336
|
+
},
|
|
337
|
+
"temp-dir": {
|
|
338
|
+
"from": "1.0.0",
|
|
339
|
+
"to": "^3.0.0"
|
|
340
|
+
},
|
|
341
|
+
"tinyglobby": {
|
|
342
|
+
"from": "0.2.12",
|
|
343
|
+
"to": "^0.2.15"
|
|
344
|
+
},
|
|
345
|
+
"uuid": {
|
|
346
|
+
"from": "^11.1.0",
|
|
347
|
+
"to": "^13.0.0"
|
|
348
|
+
},
|
|
349
|
+
"validate-npm-package-name": {
|
|
350
|
+
"from": "6.0.2",
|
|
351
|
+
"to": "^7.0.2"
|
|
352
|
+
},
|
|
353
|
+
"write-file-atomic": {
|
|
354
|
+
"from": "5.0.1",
|
|
355
|
+
"to": "^7.0.1"
|
|
356
|
+
},
|
|
357
|
+
"write-pkg": {
|
|
358
|
+
"from": "4.0.0",
|
|
359
|
+
"to": "^7.0.0"
|
|
360
|
+
},
|
|
361
|
+
"yargs": {
|
|
362
|
+
"from": "17.7.2",
|
|
363
|
+
"to": "^18.0.0"
|
|
364
|
+
},
|
|
365
|
+
"yargs-parser": {
|
|
366
|
+
"from": "21.1.1",
|
|
367
|
+
"to": "^22.0.0"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"depsUpdated": 58,
|
|
371
|
+
"originalPackage": "lerna",
|
|
372
|
+
"originalVersion": "9.0.5",
|
|
373
|
+
"processedAt": "2026-03-09T05:10:03.350Z",
|
|
374
|
+
"smokeTest": "failed"
|
|
375
|
+
}
|
|
376
|
+
}
|