@teambit/harmony.content.cli-reference 2.0.661 → 2.0.662

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.
@@ -1,4 +1,4 @@
1
1
  ---
2
- description: 'Bit command synopses. Bit version: 1.11.23'
2
+ description: 'Bit command synopses. Bit version: 1.11.24'
3
3
  labels: ['cli', 'mdx', 'docs']
4
4
  ---
@@ -1909,6 +1909,11 @@
1909
1909
  "skip-tests",
1910
1910
  "skip running component tests during build process"
1911
1911
  ],
1912
+ [
1913
+ "",
1914
+ "loose",
1915
+ "allow build to succeed even if tasks like tests or lint fail"
1916
+ ],
1912
1917
  [
1913
1918
  "",
1914
1919
  "skip-tasks <string>",
@@ -3173,6 +3178,11 @@
3173
3178
  "build",
3174
3179
  "locally run the build pipeline (i.e. not via rippleCI) and complete the tag"
3175
3180
  ],
3181
+ [
3182
+ "",
3183
+ "loose",
3184
+ "allow tag --build to succeed even if tasks like tests or lint fail"
3185
+ ],
3176
3186
  [
3177
3187
  "",
3178
3188
  "detach-head",
@@ -3251,6 +3261,11 @@
3251
3261
  "ignore-build-errors",
3252
3262
  "proceed to snap pipeline even when build pipeline fails"
3253
3263
  ],
3264
+ [
3265
+ "",
3266
+ "loose",
3267
+ "allow snap --build to succeed even if tasks like tests or lint fail"
3268
+ ],
3254
3269
  [
3255
3270
  "",
3256
3271
  "rebuild-deps-graph",
package/cli-reference.mdx CHANGED
@@ -228,6 +228,7 @@ because this process can take a while on a large workspace, some flags are avail
228
228
  | `--cache-packages-on-capsule-root` | | set the package-manager cache on the capsule root |
229
229
  | `--list-tasks <string>` | | list tasks of an env or a component-id for each one of the pipelines: build, tag and snap |
230
230
  | `--skip-tests` | | skip running component tests during build process |
231
+ | `--loose` | | allow build to succeed even if tasks like tests or lint fail |
231
232
  | `--skip-tasks <string>` | | skip the given tasks. for multiple tasks, separate by a comma and wrap with quotes. specify the task-name (e.g. "TypescriptCompiler") or the task-aspect-id (e.g. teambit.compilation/compiler) |
232
233
  | `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
233
234
  | `--include-snap` | | include snap pipeline tasks. Warning: this may deploy/publish if you have such tasks |
@@ -2085,6 +2086,7 @@ optionally, provide [pattern] to limit the fork to specific components
2085
2086
  | `--skip-auto-snap` | | skip auto snapping dependents |
2086
2087
  | `--disable-snap-pipeline` | | skip the snap pipeline. this will for instance skip packing and publishing component version for install, and app deployment |
2087
2088
  | `--ignore-build-errors` | | proceed to snap pipeline even when build pipeline fails |
2089
+ | `--loose` | | allow snap --build to succeed even if tasks like tests or lint fail |
2088
2090
  | `--rebuild-deps-graph` | | do not reuse the saved dependencies graph, instead build it from scratch |
2089
2091
  | `--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] to ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify "\*". |
2090
2092
  | `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
@@ -2240,6 +2242,7 @@ if patterns are entered, you can specify a version per pattern using "@" sign, e
2240
2242
  | `--ignore-newest-version` | `-I` | allow tagging even when the component has newer versions e.g. for hotfixes. |
2241
2243
  | `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
2242
2244
  | `--build` | `-b` | locally run the build pipeline (i.e. not via rippleCI) and complete the tag |
2245
+ | `--loose` | | allow tag --build to succeed even if tasks like tests or lint fail |
2243
2246
  | `--detach-head` | | UNSUPPORTED YET. in case a component is checked out to an older version, tag it without changing the head |
2244
2247
 
2245
2248
  ---
@@ -1,4 +1,4 @@
1
1
  ---
2
- description: 'Bit command synopses. Bit version: 1.11.23'
2
+ description: 'Bit command synopses. Bit version: 1.11.24'
3
3
  labels: ['cli', 'mdx', 'docs']
4
4
  ---
@@ -1909,6 +1909,11 @@
1909
1909
  "skip-tests",
1910
1910
  "skip running component tests during build process"
1911
1911
  ],
1912
+ [
1913
+ "",
1914
+ "loose",
1915
+ "allow build to succeed even if tasks like tests or lint fail"
1916
+ ],
1912
1917
  [
1913
1918
  "",
1914
1919
  "skip-tasks <string>",
@@ -3173,6 +3178,11 @@
3173
3178
  "build",
3174
3179
  "locally run the build pipeline (i.e. not via rippleCI) and complete the tag"
3175
3180
  ],
3181
+ [
3182
+ "",
3183
+ "loose",
3184
+ "allow tag --build to succeed even if tasks like tests or lint fail"
3185
+ ],
3176
3186
  [
3177
3187
  "",
3178
3188
  "detach-head",
@@ -3251,6 +3261,11 @@
3251
3261
  "ignore-build-errors",
3252
3262
  "proceed to snap pipeline even when build pipeline fails"
3253
3263
  ],
3264
+ [
3265
+ "",
3266
+ "loose",
3267
+ "allow snap --build to succeed even if tasks like tests or lint fail"
3268
+ ],
3254
3269
  [
3255
3270
  "",
3256
3271
  "rebuild-deps-graph",
@@ -1151,6 +1151,19 @@ function MDXContent(_ref) {
1151
1151
  "align": null
1152
1152
  }, (0, _react2.mdx)("inlineCode", {
1153
1153
  parentName: "td"
1154
+ }, "--loose")), (0, _react2.mdx)("td", {
1155
+ parentName: "tr",
1156
+ "align": "center"
1157
+ }), (0, _react2.mdx)("td", {
1158
+ parentName: "tr",
1159
+ "align": null
1160
+ }, "allow build to succeed even if tasks like tests or lint fail")), (0, _react2.mdx)("tr", {
1161
+ parentName: "tbody"
1162
+ }, (0, _react2.mdx)("td", {
1163
+ parentName: "tr",
1164
+ "align": null
1165
+ }, (0, _react2.mdx)("inlineCode", {
1166
+ parentName: "td"
1154
1167
  }, "--skip-tasks <string>")), (0, _react2.mdx)("td", {
1155
1168
  parentName: "tr",
1156
1169
  "align": "center"
@@ -11125,6 +11138,19 @@ function MDXContent(_ref) {
11125
11138
  "align": null
11126
11139
  }, (0, _react2.mdx)("inlineCode", {
11127
11140
  parentName: "td"
11141
+ }, "--loose")), (0, _react2.mdx)("td", {
11142
+ parentName: "tr",
11143
+ "align": "center"
11144
+ }), (0, _react2.mdx)("td", {
11145
+ parentName: "tr",
11146
+ "align": null
11147
+ }, "allow snap --build to succeed even if tasks like tests or lint fail")), (0, _react2.mdx)("tr", {
11148
+ parentName: "tbody"
11149
+ }, (0, _react2.mdx)("td", {
11150
+ parentName: "tr",
11151
+ "align": null
11152
+ }, (0, _react2.mdx)("inlineCode", {
11153
+ parentName: "td"
11128
11154
  }, "--rebuild-deps-graph")), (0, _react2.mdx)("td", {
11129
11155
  parentName: "tr",
11130
11156
  "align": "center"
@@ -12135,6 +12161,19 @@ function MDXContent(_ref) {
12135
12161
  "align": null
12136
12162
  }, (0, _react2.mdx)("inlineCode", {
12137
12163
  parentName: "td"
12164
+ }, "--loose")), (0, _react2.mdx)("td", {
12165
+ parentName: "tr",
12166
+ "align": "center"
12167
+ }), (0, _react2.mdx)("td", {
12168
+ parentName: "tr",
12169
+ "align": null
12170
+ }, "allow tag --build to succeed even if tasks like tests or lint fail")), (0, _react2.mdx)("tr", {
12171
+ parentName: "tbody"
12172
+ }, (0, _react2.mdx)("td", {
12173
+ parentName: "tr",
12174
+ "align": null
12175
+ }, (0, _react2.mdx)("inlineCode", {
12176
+ parentName: "td"
12138
12177
  }, "--detach-head")), (0, _react2.mdx)("td", {
12139
12178
  parentName: "tr",
12140
12179
  "align": "center"