@teambit/harmony.content.cli-reference 1.95.115 → 1.95.117

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.
@@ -975,6 +975,28 @@
975
975
  }
976
976
  ]
977
977
  },
978
+ {
979
+ "name": "rename-owner <current-owner-name> <new-owner-name>",
980
+ "options": [
981
+ [
982
+ "r",
983
+ "refactor",
984
+ "update the import statements in all dependent components to the new package name (that contains the new owner name)"
985
+ ]
986
+ ],
987
+ "description": "Renames the owner part of the scope-name for all components with the specified 'current owner name'",
988
+ "group": "development",
989
+ "arguments": [
990
+ {
991
+ "name": "current-owner-name",
992
+ "description": "the owner name to be replaced by another owner name"
993
+ },
994
+ {
995
+ "name": "new-owner-name",
996
+ "description": "a new owner name to replace the current owner name"
997
+ }
998
+ ]
999
+ },
978
1000
  {
979
1001
  "name": "fork <original-scope> <new-scope>",
980
1002
  "options": [],
@@ -1529,7 +1551,7 @@
1529
1551
  [
1530
1552
  "u",
1531
1553
  "update-existing [updateExisting]",
1532
- "update existing dependencies version and types"
1554
+ "DEPRECATED (not needed anymore, it is the default now). update existing dependencies version and types"
1533
1555
  ],
1534
1556
  [
1535
1557
  "",
@@ -1555,6 +1577,11 @@
1555
1577
  "",
1556
1578
  "add-missing-peers [addMissingPeers]",
1557
1579
  "install all missing peer dependencies"
1580
+ ],
1581
+ [
1582
+ "",
1583
+ "no-optional [noOptional]",
1584
+ "do not install optional dependencies (works with pnpm only)"
1558
1585
  ]
1559
1586
  ],
1560
1587
  "description": "installs workspace dependencies",
@@ -2190,8 +2217,8 @@
2190
2217
  ],
2191
2218
  "description": "EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)",
2192
2219
  "extendedDescription": "https://bit.dev/components/snaps\nyou can use a pattern for multiple ids, such as bit snap \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
2193
- "group": "ungrouped",
2194
- "private": true,
2220
+ "group": "development",
2221
+ "private": false,
2195
2222
  "arguments": [
2196
2223
  {
2197
2224
  "name": "component-pattern",
@@ -2619,8 +2646,8 @@
2619
2646
  ],
2620
2647
  "description": "remove lanes",
2621
2648
  "extendedDescription": "",
2622
- "group": "ungrouped",
2623
- "private": true,
2649
+ "group": "collaborate",
2650
+ "private": false,
2624
2651
  "arguments": [
2625
2652
  {
2626
2653
  "name": "lanes...",
@@ -3898,6 +3925,11 @@
3898
3925
  "",
3899
3926
  "lane <lane-id>",
3900
3927
  "helps to fetch the components from the lane scope (relevant for --multiple)"
3928
+ ],
3929
+ [
3930
+ "",
3931
+ "rebuild",
3932
+ "allow signing components that their buildStatus is success for testing purposes"
3901
3933
  ]
3902
3934
  ],
3903
3935
  "description": "complete the build process for components",
package/cli-reference.mdx CHANGED
@@ -732,16 +732,17 @@ when no package is specified, all workspace dependencies are installed and all w
732
732
 
733
733
  `bit install [packages...]`
734
734
 
735
- | **Option** | **Option alias** | **Description** |
736
- | --------------------------------------- | :--------------: | --------------------------------------------------------------- |
737
- | `--variants <variants>` | `-v` | add packages to specific variants |
738
- | `--type [lifecycleType]` | `-t` | "runtime" (default) or "peer" (dev is not a valid option) |
739
- | `--update-existing [updateExisting]` | `-u` | update existing dependencies version and types |
740
- | `--save-prefix [savePrefix]` | | set the prefix to use when adding dependency to workspace.jsonc |
741
- | `--skip-dedupe [skipDedupe]` | | do not dedupe dependencies on installation |
742
- | `--skip-import [skipImport]` | | do not import bit objects post installation |
743
- | `--skip-compile [skipCompile]` | | do not compile components |
744
- | `--add-missing-peers [addMissingPeers]` | | install all missing peer dependencies |
735
+ | **Option** | **Option alias** | **Description** |
736
+ | --------------------------------------- | :--------------: | ------------------------------------------------------------------------------------------------------ |
737
+ | `--variants <variants>` | `-v` | add packages to specific variants |
738
+ | `--type [lifecycleType]` | `-t` | "runtime" (default) or "peer" (dev is not a valid option) |
739
+ | `--update-existing [updateExisting]` | `-u` | DEPRECATED (not needed anymore, it is the default now). update existing dependencies version and types |
740
+ | `--save-prefix [savePrefix]` | | set the prefix to use when adding dependency to workspace.jsonc |
741
+ | `--skip-dedupe [skipDedupe]` | | do not dedupe dependencies on installation |
742
+ | `--skip-import [skipImport]` | | do not import bit objects post installation |
743
+ | `--skip-compile [skipCompile]` | | do not compile components |
744
+ | `--add-missing-peers [addMissingPeers]` | | install all missing peer dependencies |
745
+ | `--no-optional [noOptional]` | | do not install optional dependencies (works with pnpm only) |
745
746
 
746
747
  ---
747
748
 
@@ -1096,6 +1097,16 @@ use `bit pattern --help` to understand patterns better and `bit pattern <pattern
1096
1097
  | ------------ | :--------------: | ------------------------------------------------------------------------------------------------------------------- |
1097
1098
  | `--refactor` | `-r` | update the import statements in all dependent components to the new package name (that contains the new scope name) |
1098
1099
 
1100
+ ### scope rename-owner
1101
+
1102
+ **Usage**: `scope rename-owner <current-owner-name> <new-owner-name>`
1103
+
1104
+ **Description**: Renames the owner part of the scope-name for all components with the specified 'current owner name'
1105
+
1106
+ | **Option** | **Option alias** | **Description** |
1107
+ | ------------ | :--------------: | ------------------------------------------------------------------------------------------------------------------- |
1108
+ | `--refactor` | `-r` | update the import statements in all dependent components to the new package name (that contains the new owner name) |
1109
+
1099
1110
  ### scope fork
1100
1111
 
1101
1112
  **Usage**: `scope fork <original-scope> <new-scope>`
@@ -1153,6 +1164,32 @@ use `bit pattern --help` to understand patterns better and `bit pattern <pattern
1153
1164
 
1154
1165
  ---
1155
1166
 
1167
+ ## snap
1168
+
1169
+ **Workspace only**: yes
1170
+ **Description**: EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)
1171
+ https://bit.dev/components/snaps
1172
+ you can use a pattern for multiple ids, such as bit snap "utils/\*". (wrap the pattern with quotes to avoid collision with shell commands)
1173
+
1174
+ `bit snap [component-pattern]`
1175
+
1176
+ | **Option** | **Option alias** | **Description** |
1177
+ | -------------------------- | :--------------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1178
+ | `--message <message>` | `-m` | log message describing the latest changes |
1179
+ | `--unmodified` | | include unmodified components (by default, only new and modified components are snapped) |
1180
+ | `--unmerged` | | EXPERIMENTAL. complete a merge process by snapping the unmerged components |
1181
+ | `--build` | `-b` | EXPERIMENTAL. not needed for now. run the build pipeline in case the feature-flag build-on-ci is enabled |
1182
+ | `--editor [editor]` | | EXPERIMENTAL. open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim). |
1183
+ | `--skip-tests` | | skip running component tests during snap process |
1184
+ | `--skip-auto-snap` | | skip auto snapping dependents |
1185
+ | `--disable-snap-pipeline` | | skip the snap pipeline |
1186
+ | `--force-deploy` | | run the deploy pipeline although the build failed |
1187
+ | `--ignore-issues [issues]` | `-i` | ignore component issues (shown in "bit status" as "issues found"), issues to ignore: [MissingPackagesDependenciesOnFs, MissingManuallyConfiguredPackages, MissingComponents, UntrackedDependencies, ResolveErrors, RelativeComponents, RelativeComponentsAuthored, ParseErrors, MissingDists, LegacyInsideHarmony, MissingDependenciesOnFs, ImportNonMainFiles, CustomModuleResolutionUsed, MultipleEnvs, MissingLinksFromNodeModulesToSrc, CircularDependencies, DuplicateComponentAndPackage, MergeConfigHasConflict] to ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify "\*". |
1188
+ | `--all` | `-a` | DEPRECATED (not needed anymore, it is the default now). snap all new and modified components |
1189
+ | `--force` | `-f` | DEPRECATED (use "--skip-tests" or "--unmodified" instead). force-snap even if tests are failing and even when component has not changed |
1190
+
1191
+ ---
1192
+
1156
1193
  ## start
1157
1194
 
1158
1195
  **Alias**: `c`
@@ -975,6 +975,28 @@
975
975
  }
976
976
  ]
977
977
  },
978
+ {
979
+ "name": "rename-owner <current-owner-name> <new-owner-name>",
980
+ "options": [
981
+ [
982
+ "r",
983
+ "refactor",
984
+ "update the import statements in all dependent components to the new package name (that contains the new owner name)"
985
+ ]
986
+ ],
987
+ "description": "Renames the owner part of the scope-name for all components with the specified 'current owner name'",
988
+ "group": "development",
989
+ "arguments": [
990
+ {
991
+ "name": "current-owner-name",
992
+ "description": "the owner name to be replaced by another owner name"
993
+ },
994
+ {
995
+ "name": "new-owner-name",
996
+ "description": "a new owner name to replace the current owner name"
997
+ }
998
+ ]
999
+ },
978
1000
  {
979
1001
  "name": "fork <original-scope> <new-scope>",
980
1002
  "options": [],
@@ -1529,7 +1551,7 @@
1529
1551
  [
1530
1552
  "u",
1531
1553
  "update-existing [updateExisting]",
1532
- "update existing dependencies version and types"
1554
+ "DEPRECATED (not needed anymore, it is the default now). update existing dependencies version and types"
1533
1555
  ],
1534
1556
  [
1535
1557
  "",
@@ -1555,6 +1577,11 @@
1555
1577
  "",
1556
1578
  "add-missing-peers [addMissingPeers]",
1557
1579
  "install all missing peer dependencies"
1580
+ ],
1581
+ [
1582
+ "",
1583
+ "no-optional [noOptional]",
1584
+ "do not install optional dependencies (works with pnpm only)"
1558
1585
  ]
1559
1586
  ],
1560
1587
  "description": "installs workspace dependencies",
@@ -2190,8 +2217,8 @@
2190
2217
  ],
2191
2218
  "description": "EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)",
2192
2219
  "extendedDescription": "https://bit.dev/components/snaps\nyou can use a pattern for multiple ids, such as bit snap \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
2193
- "group": "ungrouped",
2194
- "private": true,
2220
+ "group": "development",
2221
+ "private": false,
2195
2222
  "arguments": [
2196
2223
  {
2197
2224
  "name": "component-pattern",
@@ -2619,8 +2646,8 @@
2619
2646
  ],
2620
2647
  "description": "remove lanes",
2621
2648
  "extendedDescription": "",
2622
- "group": "ungrouped",
2623
- "private": true,
2649
+ "group": "collaborate",
2650
+ "private": false,
2624
2651
  "arguments": [
2625
2652
  {
2626
2653
  "name": "lanes...",
@@ -3898,6 +3925,11 @@
3898
3925
  "",
3899
3926
  "lane <lane-id>",
3900
3927
  "helps to fetch the components from the lane scope (relevant for --multiple)"
3928
+ ],
3929
+ [
3930
+ "",
3931
+ "rebuild",
3932
+ "allow signing components that their buildStatus is success for testing purposes"
3901
3933
  ]
3902
3934
  ],
3903
3935
  "description": "complete the build process for components",
@@ -3259,7 +3259,7 @@ function MDXContent(_ref) {
3259
3259
  }, "-u")), (0, _react2.mdx)("td", {
3260
3260
  parentName: "tr",
3261
3261
  "align": null
3262
- }, "update existing dependencies version and types")), (0, _react2.mdx)("tr", {
3262
+ }, "DEPRECATED (not needed anymore, it is the default now). update existing dependencies version and types")), (0, _react2.mdx)("tr", {
3263
3263
  parentName: "tbody"
3264
3264
  }, (0, _react2.mdx)("td", {
3265
3265
  parentName: "tr",
@@ -3324,7 +3324,20 @@ function MDXContent(_ref) {
3324
3324
  }), (0, _react2.mdx)("td", {
3325
3325
  parentName: "tr",
3326
3326
  "align": null
3327
- }, "install all missing peer dependencies")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "link"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
3327
+ }, "install all missing peer dependencies")), (0, _react2.mdx)("tr", {
3328
+ parentName: "tbody"
3329
+ }, (0, _react2.mdx)("td", {
3330
+ parentName: "tr",
3331
+ "align": null
3332
+ }, (0, _react2.mdx)("inlineCode", {
3333
+ parentName: "td"
3334
+ }, "--no-optional [noOptional]")), (0, _react2.mdx)("td", {
3335
+ parentName: "tr",
3336
+ "align": "center"
3337
+ }), (0, _react2.mdx)("td", {
3338
+ parentName: "tr",
3339
+ "align": null
3340
+ }, "do not install optional dependencies (works with pnpm only)")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "link"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
3328
3341
  parentName: "p"
3329
3342
  }, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
3330
3343
  parentName: "p"
@@ -4930,7 +4943,49 @@ function MDXContent(_ref) {
4930
4943
  }, "-r")), (0, _react2.mdx)("td", {
4931
4944
  parentName: "tr",
4932
4945
  "align": null
4933
- }, "update the import statements in all dependent components to the new package name (that contains the new scope name)")))), (0, _react2.mdx)("h3", null, "scope fork"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
4946
+ }, "update the import statements in all dependent components to the new package name (that contains the new scope name)")))), (0, _react2.mdx)("h3", null, "scope rename-owner"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
4947
+ parentName: "p"
4948
+ }, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
4949
+ parentName: "p"
4950
+ }, "scope rename-owner <current-owner-name> <new-owner-name>")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
4951
+ parentName: "p"
4952
+ }, "Description"), ": Renames the owner part of the scope-name for all components with the specified 'current owner name'"), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
4953
+ parentName: "table"
4954
+ }, (0, _react2.mdx)("tr", {
4955
+ parentName: "thead"
4956
+ }, (0, _react2.mdx)("th", {
4957
+ parentName: "tr",
4958
+ "align": null
4959
+ }, (0, _react2.mdx)("strong", {
4960
+ parentName: "th"
4961
+ }, "Option")), (0, _react2.mdx)("th", {
4962
+ parentName: "tr",
4963
+ "align": "center"
4964
+ }, (0, _react2.mdx)("strong", {
4965
+ parentName: "th"
4966
+ }, "Option alias")), (0, _react2.mdx)("th", {
4967
+ parentName: "tr",
4968
+ "align": null
4969
+ }, (0, _react2.mdx)("strong", {
4970
+ parentName: "th"
4971
+ }, "Description")))), (0, _react2.mdx)("tbody", {
4972
+ parentName: "table"
4973
+ }, (0, _react2.mdx)("tr", {
4974
+ parentName: "tbody"
4975
+ }, (0, _react2.mdx)("td", {
4976
+ parentName: "tr",
4977
+ "align": null
4978
+ }, (0, _react2.mdx)("inlineCode", {
4979
+ parentName: "td"
4980
+ }, "--refactor")), (0, _react2.mdx)("td", {
4981
+ parentName: "tr",
4982
+ "align": "center"
4983
+ }, (0, _react2.mdx)("inlineCode", {
4984
+ parentName: "td"
4985
+ }, "-r")), (0, _react2.mdx)("td", {
4986
+ parentName: "tr",
4987
+ "align": null
4988
+ }, "update the import statements in all dependent components to the new package name (that contains the new owner name)")))), (0, _react2.mdx)("h3", null, "scope fork"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
4934
4989
  parentName: "p"
4935
4990
  }, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
4936
4991
  parentName: "p"
@@ -5057,7 +5112,209 @@ function MDXContent(_ref) {
5057
5112
  }, "-c")), (0, _react2.mdx)("td", {
5058
5113
  parentName: "tr",
5059
5114
  "align": null
5060
- }, "compare current file system component to the latest tagged component ", "[default=latest]", ". only works in legacy.")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "start"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
5115
+ }, "compare current file system component to the latest tagged component ", "[default=latest]", ". only works in legacy.")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "snap"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
5116
+ parentName: "p"
5117
+ }, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
5118
+ parentName: "p"
5119
+ }), "\n", (0, _react2.mdx)("strong", {
5120
+ parentName: "p"
5121
+ }, "Description"), ": EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)", (0, _react2.mdx)("br", {
5122
+ parentName: "p"
5123
+ }), "\n", (0, _react2.mdx)("a", {
5124
+ parentName: "p",
5125
+ "href": "https://bit.dev/components/snaps"
5126
+ }, "https://bit.dev/components/snaps"), (0, _react2.mdx)("br", {
5127
+ parentName: "p"
5128
+ }), "\n", "you can use a pattern for multiple ids, such as bit snap \"utils/", "*", "\". (wrap the pattern with quotes to avoid collision with shell commands)"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
5129
+ parentName: "p"
5130
+ }, "bit snap [component-pattern]")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
5131
+ parentName: "table"
5132
+ }, (0, _react2.mdx)("tr", {
5133
+ parentName: "thead"
5134
+ }, (0, _react2.mdx)("th", {
5135
+ parentName: "tr",
5136
+ "align": null
5137
+ }, (0, _react2.mdx)("strong", {
5138
+ parentName: "th"
5139
+ }, "Option")), (0, _react2.mdx)("th", {
5140
+ parentName: "tr",
5141
+ "align": "center"
5142
+ }, (0, _react2.mdx)("strong", {
5143
+ parentName: "th"
5144
+ }, "Option alias")), (0, _react2.mdx)("th", {
5145
+ parentName: "tr",
5146
+ "align": null
5147
+ }, (0, _react2.mdx)("strong", {
5148
+ parentName: "th"
5149
+ }, "Description")))), (0, _react2.mdx)("tbody", {
5150
+ parentName: "table"
5151
+ }, (0, _react2.mdx)("tr", {
5152
+ parentName: "tbody"
5153
+ }, (0, _react2.mdx)("td", {
5154
+ parentName: "tr",
5155
+ "align": null
5156
+ }, (0, _react2.mdx)("inlineCode", {
5157
+ parentName: "td"
5158
+ }, "--message <message>")), (0, _react2.mdx)("td", {
5159
+ parentName: "tr",
5160
+ "align": "center"
5161
+ }, (0, _react2.mdx)("inlineCode", {
5162
+ parentName: "td"
5163
+ }, "-m")), (0, _react2.mdx)("td", {
5164
+ parentName: "tr",
5165
+ "align": null
5166
+ }, "log message describing the latest changes")), (0, _react2.mdx)("tr", {
5167
+ parentName: "tbody"
5168
+ }, (0, _react2.mdx)("td", {
5169
+ parentName: "tr",
5170
+ "align": null
5171
+ }, (0, _react2.mdx)("inlineCode", {
5172
+ parentName: "td"
5173
+ }, "--unmodified")), (0, _react2.mdx)("td", {
5174
+ parentName: "tr",
5175
+ "align": "center"
5176
+ }), (0, _react2.mdx)("td", {
5177
+ parentName: "tr",
5178
+ "align": null
5179
+ }, "include unmodified components (by default, only new and modified components are snapped)")), (0, _react2.mdx)("tr", {
5180
+ parentName: "tbody"
5181
+ }, (0, _react2.mdx)("td", {
5182
+ parentName: "tr",
5183
+ "align": null
5184
+ }, (0, _react2.mdx)("inlineCode", {
5185
+ parentName: "td"
5186
+ }, "--unmerged")), (0, _react2.mdx)("td", {
5187
+ parentName: "tr",
5188
+ "align": "center"
5189
+ }), (0, _react2.mdx)("td", {
5190
+ parentName: "tr",
5191
+ "align": null
5192
+ }, "EXPERIMENTAL. complete a merge process by snapping the unmerged components")), (0, _react2.mdx)("tr", {
5193
+ parentName: "tbody"
5194
+ }, (0, _react2.mdx)("td", {
5195
+ parentName: "tr",
5196
+ "align": null
5197
+ }, (0, _react2.mdx)("inlineCode", {
5198
+ parentName: "td"
5199
+ }, "--build")), (0, _react2.mdx)("td", {
5200
+ parentName: "tr",
5201
+ "align": "center"
5202
+ }, (0, _react2.mdx)("inlineCode", {
5203
+ parentName: "td"
5204
+ }, "-b")), (0, _react2.mdx)("td", {
5205
+ parentName: "tr",
5206
+ "align": null
5207
+ }, "EXPERIMENTAL. not needed for now. run the build pipeline in case the feature-flag build-on-ci is enabled")), (0, _react2.mdx)("tr", {
5208
+ parentName: "tbody"
5209
+ }, (0, _react2.mdx)("td", {
5210
+ parentName: "tr",
5211
+ "align": null
5212
+ }, (0, _react2.mdx)("inlineCode", {
5213
+ parentName: "td"
5214
+ }, "--editor [editor]")), (0, _react2.mdx)("td", {
5215
+ parentName: "tr",
5216
+ "align": "center"
5217
+ }), (0, _react2.mdx)("td", {
5218
+ parentName: "tr",
5219
+ "align": null
5220
+ }, "EXPERIMENTAL. open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim).")), (0, _react2.mdx)("tr", {
5221
+ parentName: "tbody"
5222
+ }, (0, _react2.mdx)("td", {
5223
+ parentName: "tr",
5224
+ "align": null
5225
+ }, (0, _react2.mdx)("inlineCode", {
5226
+ parentName: "td"
5227
+ }, "--skip-tests")), (0, _react2.mdx)("td", {
5228
+ parentName: "tr",
5229
+ "align": "center"
5230
+ }), (0, _react2.mdx)("td", {
5231
+ parentName: "tr",
5232
+ "align": null
5233
+ }, "skip running component tests during snap process")), (0, _react2.mdx)("tr", {
5234
+ parentName: "tbody"
5235
+ }, (0, _react2.mdx)("td", {
5236
+ parentName: "tr",
5237
+ "align": null
5238
+ }, (0, _react2.mdx)("inlineCode", {
5239
+ parentName: "td"
5240
+ }, "--skip-auto-snap")), (0, _react2.mdx)("td", {
5241
+ parentName: "tr",
5242
+ "align": "center"
5243
+ }), (0, _react2.mdx)("td", {
5244
+ parentName: "tr",
5245
+ "align": null
5246
+ }, "skip auto snapping dependents")), (0, _react2.mdx)("tr", {
5247
+ parentName: "tbody"
5248
+ }, (0, _react2.mdx)("td", {
5249
+ parentName: "tr",
5250
+ "align": null
5251
+ }, (0, _react2.mdx)("inlineCode", {
5252
+ parentName: "td"
5253
+ }, "--disable-snap-pipeline")), (0, _react2.mdx)("td", {
5254
+ parentName: "tr",
5255
+ "align": "center"
5256
+ }), (0, _react2.mdx)("td", {
5257
+ parentName: "tr",
5258
+ "align": null
5259
+ }, "skip the snap pipeline")), (0, _react2.mdx)("tr", {
5260
+ parentName: "tbody"
5261
+ }, (0, _react2.mdx)("td", {
5262
+ parentName: "tr",
5263
+ "align": null
5264
+ }, (0, _react2.mdx)("inlineCode", {
5265
+ parentName: "td"
5266
+ }, "--force-deploy")), (0, _react2.mdx)("td", {
5267
+ parentName: "tr",
5268
+ "align": "center"
5269
+ }), (0, _react2.mdx)("td", {
5270
+ parentName: "tr",
5271
+ "align": null
5272
+ }, "run the deploy pipeline although the build failed")), (0, _react2.mdx)("tr", {
5273
+ parentName: "tbody"
5274
+ }, (0, _react2.mdx)("td", {
5275
+ parentName: "tr",
5276
+ "align": null
5277
+ }, (0, _react2.mdx)("inlineCode", {
5278
+ parentName: "td"
5279
+ }, "--ignore-issues [issues]")), (0, _react2.mdx)("td", {
5280
+ parentName: "tr",
5281
+ "align": "center"
5282
+ }, (0, _react2.mdx)("inlineCode", {
5283
+ parentName: "td"
5284
+ }, "-i")), (0, _react2.mdx)("td", {
5285
+ parentName: "tr",
5286
+ "align": null
5287
+ }, "ignore component issues (shown in \"bit status\" as \"issues found\"), issues to ignore: ", "[MissingPackagesDependenciesOnFs, MissingManuallyConfiguredPackages, MissingComponents, UntrackedDependencies, ResolveErrors, RelativeComponents, RelativeComponentsAuthored, ParseErrors, MissingDists, LegacyInsideHarmony, MissingDependenciesOnFs, ImportNonMainFiles, CustomModuleResolutionUsed, MultipleEnvs, MissingLinksFromNodeModulesToSrc, CircularDependencies, DuplicateComponentAndPackage, MergeConfigHasConflict]", " to ignore multiple issues, separate them by a comma and wrap with quotes. to ignore all issues, specify \"", "*", "\".")), (0, _react2.mdx)("tr", {
5288
+ parentName: "tbody"
5289
+ }, (0, _react2.mdx)("td", {
5290
+ parentName: "tr",
5291
+ "align": null
5292
+ }, (0, _react2.mdx)("inlineCode", {
5293
+ parentName: "td"
5294
+ }, "--all")), (0, _react2.mdx)("td", {
5295
+ parentName: "tr",
5296
+ "align": "center"
5297
+ }, (0, _react2.mdx)("inlineCode", {
5298
+ parentName: "td"
5299
+ }, "-a")), (0, _react2.mdx)("td", {
5300
+ parentName: "tr",
5301
+ "align": null
5302
+ }, "DEPRECATED (not needed anymore, it is the default now). snap all new and modified components")), (0, _react2.mdx)("tr", {
5303
+ parentName: "tbody"
5304
+ }, (0, _react2.mdx)("td", {
5305
+ parentName: "tr",
5306
+ "align": null
5307
+ }, (0, _react2.mdx)("inlineCode", {
5308
+ parentName: "td"
5309
+ }, "--force")), (0, _react2.mdx)("td", {
5310
+ parentName: "tr",
5311
+ "align": "center"
5312
+ }, (0, _react2.mdx)("inlineCode", {
5313
+ parentName: "td"
5314
+ }, "-f")), (0, _react2.mdx)("td", {
5315
+ parentName: "tr",
5316
+ "align": null
5317
+ }, "DEPRECATED (use \"--skip-tests\" or \"--unmodified\" instead). force-snap even if tests are failing and even when component has not changed")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "start"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
5061
5318
  parentName: "p"
5062
5319
  }, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
5063
5320
  parentName: "p"