You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike `lerna ls`, however, `lerna changed`**does not** support [filter options](https://www.npmjs.com/package/@lerna/filter-options), as filtering is not supported by `lerna version` or `lerna publish`.
33
33
34
-
`lerna changed` supports the following options of [`lerna version`](https://github.com/lerna/lerna/tree/main/commands/version#options) (the others are irrelevant):
34
+
`lerna changed` supports the following options of [`lerna version`](https://github.com/lerna/lerna/tree/main/libs/commands/version#options) (the others are irrelevant):
Copy file name to clipboardExpand all lines: libs/commands/create/src/index.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ class CreateCommand extends Command {
60
60
if(!name&&pkgName.includes("/")){
61
61
thrownewValidationError(
62
62
"ENOPKGNAME",
63
-
"Invalid package name. Use the <loc> positional to specify package directory.\nSee https://github.com/lerna/lerna/tree/main/commands/create#usage for details."
63
+
"Invalid package name. Use the <loc> positional to specify package directory.\nSee https://github.com/lerna/lerna/tree/main/libs/commands/create#usage for details."
Copy file name to clipboardExpand all lines: libs/commands/publish/README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ lerna publish from-package # explicitly publish packages where the latest versio
14
14
15
15
When run, this command does one of the following things:
16
16
17
-
- Publish packages updated since the last release (calling [`lerna version`](https://github.com/lerna/lerna/tree/main/commands/version#readme) behind the scenes).
17
+
- Publish packages updated since the last release (calling [`lerna version`](https://github.com/lerna/lerna/tree/main/libs/commands/version#readme) behind the scenes).
18
18
- This is the legacy behavior of lerna 2.x
19
19
- Publish packages tagged in the current commit (`from-git`).
20
20
- Publish packages in the latest commit where the version is not present in the registry (`from-package`).
@@ -32,7 +32,7 @@ Check out [Per-Package Configuration](#per-package-configuration) for more detai
32
32
33
33
### bump `from-git`
34
34
35
-
In addition to the semver keywords supported by [`lerna version`](https://github.com/lerna/lerna/tree/main/commands/version#positionals),
35
+
In addition to the semver keywords supported by [`lerna version`](https://github.com/lerna/lerna/tree/main/libs/commands/version#positionals),
36
36
`lerna publish` also supports the `from-git` keyword.
37
37
This will identify packages tagged by `lerna version` and publish them to npm.
38
38
This is useful in CI scenarios where you wish to manually increment versions,
@@ -47,7 +47,7 @@ This is useful when a previous `lerna publish` failed to publish all packages to
47
47
48
48
## Options
49
49
50
-
`lerna publish` supports all of the options provided by [`lerna version`](https://github.com/lerna/lerna/tree/main/commands/version#options) in addition to the following:
50
+
`lerna publish` supports all of the options provided by [`lerna version`](https://github.com/lerna/lerna/tree/main/libs/commands/version#options) in addition to the following:
51
51
52
52
-[`--canary`](#--canary)
53
53
-[`--contents <dir>`](#--contents-dir)
@@ -232,7 +232,7 @@ This option makes the most sense configured in lerna.json, as you really don't w
232
232
}
233
233
```
234
234
235
-
The root-level configuration is intentional, as this also covers the [identically-named option in `lerna version`](https://github.com/lerna/lerna/tree/main/commands/version#--no-granular-pathspec).
235
+
The root-level configuration is intentional, as this also covers the [identically-named option in `lerna version`](https://github.com/lerna/lerna/tree/main/libs/commands/version#--no-granular-pathspec).
236
236
237
237
### `--verify-access`
238
238
@@ -364,7 +364,7 @@ The legacy preemptive access verification is now off by default, so `--no-verify
Copy file name to clipboardExpand all lines: libs/commands/version/README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -415,7 +415,7 @@ This option makes the most sense configured in lerna.json, as you really don't w
415
415
}
416
416
```
417
417
418
-
The root-level configuration is intentional, as this also covers the [identically-named option in `lerna publish`](https://github.com/lerna/lerna/tree/main/commands/publish#--no-granular-pathspec).
418
+
The root-level configuration is intentional, as this also covers the [identically-named option in `lerna publish`](https://github.com/lerna/lerna/tree/main/libs/commands/publish#--no-granular-pathspec).
419
419
420
420
### `--no-private`
421
421
@@ -541,7 +541,7 @@ Use [`--no-git-tag-version`](#--no-git-tag-version) and [`--no-push`](#--no-push
541
541
542
542
### Generating Initial Changelogs
543
543
544
-
If you start using the [`--conventional-commits`](#--conventional-commits) option _after_ the monorepo has been active for awhile, you can still generate changelogs for previous releases using [`conventional-changelog-cli`](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli#readme) and [`lerna exec`](https://github.com/lerna/lerna/tree/main/commands/exec#readme):
544
+
If you start using the [`--conventional-commits`](#--conventional-commits) option _after_ the monorepo has been active for awhile, you can still generate changelogs for previous releases using [`conventional-changelog-cli`](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli#readme) and [`lerna exec`](https://github.com/lerna/lerna/tree/main/libs/commands/exec#readme):
545
545
546
546
```bash
547
547
# Lerna does not actually use conventional-changelog-cli, so you need to install it temporarily
0 commit comments