-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: introduce
deps.prefix
flag to inject carets
- Loading branch information
1 parent
c5f82b8
commit c3f4529
Showing
5 changed files
with
47 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,10 @@ CLI flag options: | |
--sequential-init Avoid hypothetical concurrent initialization collisions. | ||
--first-parent Apply commit filtering to current branch only. | ||
--ignore-private Exclude private packages. True by default. | ||
--ignore-packages Packages list to be ignored on bumping process (append to the ones that already exist at package.json workspaces) | ||
--ignore-packages Packages list to be ignored on bumping process (append to the ones that already exist at package.json workspaces) | ||
--deps.bump Define deps version updating rule. Allowed: override, satisfy, inherit. | ||
--deps.release Define release type for dependent package if any of its deps changes. Supported values: patch, minor, major, inherit. | ||
--deps.prefix Optional prefix to be attached to the next version if `--deps.bump` set to `override`. Supported values: '^' | '~'` | '' (empty string, default). | ||
--tag-format Format to use for creating tag names. Should include "name" and "version" vars. Default: "${name}@${version}" generates "[email protected]" | ||
--help Help info. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ const cli = meow( | |
--first-parent Apply commit filtering to current branch only. | ||
--deps.bump Define deps version updating rule. Allowed: override, satisfy, inherit. | ||
--deps.release Define release type for dependent package if any of its deps changes. Supported values: patch, minor, major, inherit. | ||
--deps.prefix Optional prefix to be attached to the next dep version if '--deps.bump' set to 'override'. Supported values: '^' | '~' | '' (empty string as default). | ||
--ignore-packages Packages list to be ignored on bumping process | ||
--ignore-private Exclude private packages. Enabled by default, pass 'no-ignore-private' to disable. | ||
--tag-format Format to use for creating tag names. Should include "name" and "version" vars. Default: "\${name}@\${version}" generates "[email protected]" | ||
|
@@ -56,6 +57,10 @@ const cli = meow( | |
type: "string", | ||
default: "patch", | ||
}, | ||
"deps.prefix": { | ||
type: "string", | ||
default: "", | ||
}, | ||
ignorePrivate: { | ||
type: "boolean", | ||
default: true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters