Skip to content

Commit

Permalink
fix: add flag to enable sequentialPrepare mode
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianHmyd authored and antongolub committed Apr 14, 2021
1 parent 0b1b6aa commit 70c2dc5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const cli = meow(
--dry-run Dry run mode.
--debug Output debugging information.
--sequential-init Avoid hypothetical concurrent initialization collisions.
--sequential-prepare Avoid hypothetical concurrent preparation collisions. Do not use if your project have cyclic dependencies.
--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.
Expand All @@ -28,6 +29,9 @@ const cli = meow(
sequentialInit: {
type: "boolean",
},
sequentialPrepare: {
type: "boolean",
},
firstParent: {
type: "boolean",
},
Expand Down

0 comments on commit 70c2dc5

Please sign in to comment.