@teambit/harmony.content.cli-reference 2.0.1244 → 2.0.1246
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/cli-reference.docs.mdx +1 -1
- package/cli-reference.json +10 -0
- package/cli-reference.mdx +2 -0
- package/dist/cli-reference.docs.mdx +1 -1
- package/dist/cli-reference.json +10 -0
- package/dist/cli-reference.mdx.js +1 -1
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1788529038327.js → preview-1788575535452.js} +2 -2
- package/package.json +3 -3
package/cli-reference.docs.mdx
CHANGED
package/cli-reference.json
CHANGED
|
@@ -3572,6 +3572,11 @@
|
|
|
3572
3572
|
"increment-by <number>",
|
|
3573
3573
|
"(default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3."
|
|
3574
3574
|
],
|
|
3575
|
+
[
|
|
3576
|
+
"",
|
|
3577
|
+
"skip-published-versions",
|
|
3578
|
+
"skip versions that are already in the registry. useful when a previous run published the packages but failed before exporting"
|
|
3579
|
+
],
|
|
3575
3580
|
[
|
|
3576
3581
|
"i",
|
|
3577
3582
|
"ignore-issues <issues>",
|
|
@@ -5105,6 +5110,11 @@
|
|
|
5105
5110
|
"increment-by <number>",
|
|
5106
5111
|
"(default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3."
|
|
5107
5112
|
],
|
|
5113
|
+
[
|
|
5114
|
+
"",
|
|
5115
|
+
"no-skip-published-versions",
|
|
5116
|
+
"tag the computed version even when the registry already has it.\nby default, a version that is already published is skipped in favor of the next one, so that a run following a\npublish-succeeded-but-export-failed run is not rejected by the registry"
|
|
5117
|
+
],
|
|
5108
5118
|
[
|
|
5109
5119
|
"",
|
|
5110
5120
|
"versions-file <path>",
|
package/cli-reference.mdx
CHANGED
|
@@ -452,6 +452,7 @@ By default, bumps patch versions when merging to main. If specific configuration
|
|
|
452
452
|
| `--pre-release [identifier]` | | syntactic sugar for "--increment prerelease" and `--prerelease-id <identifier>` |
|
|
453
453
|
| `--auto-tag-increment <level>` | | the increment level to use for auto-tagged dependents. options are: [major, premajor, minor, preminor, patch, prepatch, prerelease]. by default, dependents are bumped by a patch, unless --increment is one of [prepatch, prerelease, preminor, premajor], which they follow. note that dependents are auto-tagged transitively, so the entire dependents graph is bumped by this level |
|
|
454
454
|
| `--increment-by <number>` | | (default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3. |
|
|
455
|
+
| `--no-skip-published-versions` | | tag the computed version even when the registry already has it. by default, a version that is already published is skipped in favor of the next one, so that a run following a publish-succeeded-but-export-failed run is not rejected by the registry |
|
|
455
456
|
| `--versions-file <path>` | | path to a file containing component versions. format: "component-id: version" |
|
|
456
457
|
| `--verbose` | | show verbose output |
|
|
457
458
|
| `--auto-merge-resolve <merge-strategy>` | `-r` | in case of merge conflict during checkout, resolve according to the provided strategy: [ours, theirs, manual] |
|
|
@@ -2779,6 +2780,7 @@ use for official releases. for development versions, use 'bit snap' instead.
|
|
|
2779
2780
|
| `--rebuild-deps-graph` | | do not reuse the saved dependencies graph, instead build it from scratch |
|
|
2780
2781
|
| `--no-lock-deps` | | do not save the dependencies graph in the tag |
|
|
2781
2782
|
| `--increment-by <number>` | | (default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3. |
|
|
2783
|
+
| `--skip-published-versions` | | skip versions that are already in the registry. useful when a previous run published the packages but failed before exporting |
|
|
2782
2784
|
| `--ignore-issues <issues>` | `-i` | ignore component issues (shown in "bit status" as "issues found"), issues to ignore: [MissingPackagesDependenciesOnFs, MissingManuallyConfiguredPackages, UntrackedDependencies, ResolveErrors, RelativeComponents, RelativeComponentsAuthored, ParseErrors, MissingDists, LegacyInsideHarmony, MissingDependenciesOnFs, ImportNonMainFiles, MultipleEnvs, MissingLinksFromNodeModulesToSrc, CircularDependencies, DuplicateComponentAndPackage, MergeConfigHasConflict, NonLoadedEnv, ExternalEnvWithoutVersion, RemovedDependencies, RemovedEnv, DeprecatedDependencies, SelfReference, ImportFromDirectory, LoadFailures] to ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify "\*". |
|
|
2783
2785
|
| `--ignore-newest-version` | `-I` | allow tagging even when the component has newer versions e.g. for hotfixes. |
|
|
2784
2786
|
| `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
|
package/dist/cli-reference.json
CHANGED
|
@@ -3572,6 +3572,11 @@
|
|
|
3572
3572
|
"increment-by <number>",
|
|
3573
3573
|
"(default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3."
|
|
3574
3574
|
],
|
|
3575
|
+
[
|
|
3576
|
+
"",
|
|
3577
|
+
"skip-published-versions",
|
|
3578
|
+
"skip versions that are already in the registry. useful when a previous run published the packages but failed before exporting"
|
|
3579
|
+
],
|
|
3575
3580
|
[
|
|
3576
3581
|
"i",
|
|
3577
3582
|
"ignore-issues <issues>",
|
|
@@ -5105,6 +5110,11 @@
|
|
|
5105
5110
|
"increment-by <number>",
|
|
5106
5111
|
"(default to 1) increment semver flag (patch/minor/major) by. e.g. incrementing patch by 2: 0.0.1 -> 0.0.3."
|
|
5107
5112
|
],
|
|
5113
|
+
[
|
|
5114
|
+
"",
|
|
5115
|
+
"no-skip-published-versions",
|
|
5116
|
+
"tag the computed version even when the registry already has it.\nby default, a version that is already published is skipped in favor of the next one, so that a run following a\npublish-succeeded-but-export-failed run is not rejected by the registry"
|
|
5117
|
+
],
|
|
5108
5118
|
[
|
|
5109
5119
|
"",
|
|
5110
5120
|
"versions-file <path>",
|