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

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
  "",
@@ -2190,8 +2212,8 @@
2190
2212
  ],
2191
2213
  "description": "EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)",
2192
2214
  "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,
2215
+ "group": "development",
2216
+ "private": false,
2195
2217
  "arguments": [
2196
2218
  {
2197
2219
  "name": "component-pattern",
@@ -2619,8 +2641,8 @@
2619
2641
  ],
2620
2642
  "description": "remove lanes",
2621
2643
  "extendedDescription": "",
2622
- "group": "ungrouped",
2623
- "private": true,
2644
+ "group": "collaborate",
2645
+ "private": false,
2624
2646
  "arguments": [
2625
2647
  {
2626
2648
  "name": "lanes...",
@@ -3898,6 +3920,11 @@
3898
3920
  "",
3899
3921
  "lane <lane-id>",
3900
3922
  "helps to fetch the components from the lane scope (relevant for --multiple)"
3923
+ ],
3924
+ [
3925
+ "",
3926
+ "rebuild",
3927
+ "allow signing components that their buildStatus is success for testing purposes"
3901
3928
  ]
3902
3929
  ],
3903
3930
  "description": "complete the build process for components",
package/cli-reference.mdx CHANGED
@@ -732,16 +732,16 @@ 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
745
 
746
746
  ---
747
747
 
@@ -1096,6 +1096,16 @@ use `bit pattern --help` to understand patterns better and `bit pattern <pattern
1096
1096
  | ------------ | :--------------: | ------------------------------------------------------------------------------------------------------------------- |
1097
1097
  | `--refactor` | `-r` | update the import statements in all dependent components to the new package name (that contains the new scope name) |
1098
1098
 
1099
+ ### scope rename-owner
1100
+
1101
+ **Usage**: `scope rename-owner <current-owner-name> <new-owner-name>`
1102
+
1103
+ **Description**: Renames the owner part of the scope-name for all components with the specified 'current owner name'
1104
+
1105
+ | **Option** | **Option alias** | **Description** |
1106
+ | ------------ | :--------------: | ------------------------------------------------------------------------------------------------------------------- |
1107
+ | `--refactor` | `-r` | update the import statements in all dependent components to the new package name (that contains the new owner name) |
1108
+
1099
1109
  ### scope fork
1100
1110
 
1101
1111
  **Usage**: `scope fork <original-scope> <new-scope>`
@@ -1153,6 +1163,32 @@ use `bit pattern --help` to understand patterns better and `bit pattern <pattern
1153
1163
 
1154
1164
  ---
1155
1165
 
1166
+ ## snap
1167
+
1168
+ **Workspace only**: yes
1169
+ **Description**: EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)
1170
+ https://bit.dev/components/snaps
1171
+ you can use a pattern for multiple ids, such as bit snap "utils/\*". (wrap the pattern with quotes to avoid collision with shell commands)
1172
+
1173
+ `bit snap [component-pattern]`
1174
+
1175
+ | **Option** | **Option alias** | **Description** |
1176
+ | -------------------------- | :--------------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1177
+ | `--message <message>` | `-m` | log message describing the latest changes |
1178
+ | `--unmodified` | | include unmodified components (by default, only new and modified components are snapped) |
1179
+ | `--unmerged` | | EXPERIMENTAL. complete a merge process by snapping the unmerged components |
1180
+ | `--build` | `-b` | EXPERIMENTAL. not needed for now. run the build pipeline in case the feature-flag build-on-ci is enabled |
1181
+ | `--editor [editor]` | | EXPERIMENTAL. open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim). |
1182
+ | `--skip-tests` | | skip running component tests during snap process |
1183
+ | `--skip-auto-snap` | | skip auto snapping dependents |
1184
+ | `--disable-snap-pipeline` | | skip the snap pipeline |
1185
+ | `--force-deploy` | | run the deploy pipeline although the build failed |
1186
+ | `--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 "\*". |
1187
+ | `--all` | `-a` | DEPRECATED (not needed anymore, it is the default now). snap all new and modified components |
1188
+ | `--force` | `-f` | DEPRECATED (use "--skip-tests" or "--unmodified" instead). force-snap even if tests are failing and even when component has not changed |
1189
+
1190
+ ---
1191
+
1156
1192
  ## start
1157
1193
 
1158
1194
  **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
  "",
@@ -2190,8 +2212,8 @@
2190
2212
  ],
2191
2213
  "description": "EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)",
2192
2214
  "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,
2215
+ "group": "development",
2216
+ "private": false,
2195
2217
  "arguments": [
2196
2218
  {
2197
2219
  "name": "component-pattern",
@@ -2619,8 +2641,8 @@
2619
2641
  ],
2620
2642
  "description": "remove lanes",
2621
2643
  "extendedDescription": "",
2622
- "group": "ungrouped",
2623
- "private": true,
2644
+ "group": "collaborate",
2645
+ "private": false,
2624
2646
  "arguments": [
2625
2647
  {
2626
2648
  "name": "lanes...",
@@ -3898,6 +3920,11 @@
3898
3920
  "",
3899
3921
  "lane <lane-id>",
3900
3922
  "helps to fetch the components from the lane scope (relevant for --multiple)"
3923
+ ],
3924
+ [
3925
+ "",
3926
+ "rebuild",
3927
+ "allow signing components that their buildStatus is success for testing purposes"
3901
3928
  ]
3902
3929
  ],
3903
3930
  "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",
@@ -4930,7 +4930,49 @@ function MDXContent(_ref) {
4930
4930
  }, "-r")), (0, _react2.mdx)("td", {
4931
4931
  parentName: "tr",
4932
4932
  "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", {
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 rename-owner"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
4934
+ parentName: "p"
4935
+ }, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
4936
+ parentName: "p"
4937
+ }, "scope rename-owner <current-owner-name> <new-owner-name>")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
4938
+ parentName: "p"
4939
+ }, "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", {
4940
+ parentName: "table"
4941
+ }, (0, _react2.mdx)("tr", {
4942
+ parentName: "thead"
4943
+ }, (0, _react2.mdx)("th", {
4944
+ parentName: "tr",
4945
+ "align": null
4946
+ }, (0, _react2.mdx)("strong", {
4947
+ parentName: "th"
4948
+ }, "Option")), (0, _react2.mdx)("th", {
4949
+ parentName: "tr",
4950
+ "align": "center"
4951
+ }, (0, _react2.mdx)("strong", {
4952
+ parentName: "th"
4953
+ }, "Option alias")), (0, _react2.mdx)("th", {
4954
+ parentName: "tr",
4955
+ "align": null
4956
+ }, (0, _react2.mdx)("strong", {
4957
+ parentName: "th"
4958
+ }, "Description")))), (0, _react2.mdx)("tbody", {
4959
+ parentName: "table"
4960
+ }, (0, _react2.mdx)("tr", {
4961
+ parentName: "tbody"
4962
+ }, (0, _react2.mdx)("td", {
4963
+ parentName: "tr",
4964
+ "align": null
4965
+ }, (0, _react2.mdx)("inlineCode", {
4966
+ parentName: "td"
4967
+ }, "--refactor")), (0, _react2.mdx)("td", {
4968
+ parentName: "tr",
4969
+ "align": "center"
4970
+ }, (0, _react2.mdx)("inlineCode", {
4971
+ parentName: "td"
4972
+ }, "-r")), (0, _react2.mdx)("td", {
4973
+ parentName: "tr",
4974
+ "align": null
4975
+ }, "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
4976
  parentName: "p"
4935
4977
  }, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
4936
4978
  parentName: "p"
@@ -5057,7 +5099,209 @@ function MDXContent(_ref) {
5057
5099
  }, "-c")), (0, _react2.mdx)("td", {
5058
5100
  parentName: "tr",
5059
5101
  "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", {
5102
+ }, "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", {
5103
+ parentName: "p"
5104
+ }, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
5105
+ parentName: "p"
5106
+ }), "\n", (0, _react2.mdx)("strong", {
5107
+ parentName: "p"
5108
+ }, "Description"), ": EXPERIMENTAL. create an immutable and exportable component snapshot (no release version)", (0, _react2.mdx)("br", {
5109
+ parentName: "p"
5110
+ }), "\n", (0, _react2.mdx)("a", {
5111
+ parentName: "p",
5112
+ "href": "https://bit.dev/components/snaps"
5113
+ }, "https://bit.dev/components/snaps"), (0, _react2.mdx)("br", {
5114
+ parentName: "p"
5115
+ }), "\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", {
5116
+ parentName: "p"
5117
+ }, "bit snap [component-pattern]")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
5118
+ parentName: "table"
5119
+ }, (0, _react2.mdx)("tr", {
5120
+ parentName: "thead"
5121
+ }, (0, _react2.mdx)("th", {
5122
+ parentName: "tr",
5123
+ "align": null
5124
+ }, (0, _react2.mdx)("strong", {
5125
+ parentName: "th"
5126
+ }, "Option")), (0, _react2.mdx)("th", {
5127
+ parentName: "tr",
5128
+ "align": "center"
5129
+ }, (0, _react2.mdx)("strong", {
5130
+ parentName: "th"
5131
+ }, "Option alias")), (0, _react2.mdx)("th", {
5132
+ parentName: "tr",
5133
+ "align": null
5134
+ }, (0, _react2.mdx)("strong", {
5135
+ parentName: "th"
5136
+ }, "Description")))), (0, _react2.mdx)("tbody", {
5137
+ parentName: "table"
5138
+ }, (0, _react2.mdx)("tr", {
5139
+ parentName: "tbody"
5140
+ }, (0, _react2.mdx)("td", {
5141
+ parentName: "tr",
5142
+ "align": null
5143
+ }, (0, _react2.mdx)("inlineCode", {
5144
+ parentName: "td"
5145
+ }, "--message <message>")), (0, _react2.mdx)("td", {
5146
+ parentName: "tr",
5147
+ "align": "center"
5148
+ }, (0, _react2.mdx)("inlineCode", {
5149
+ parentName: "td"
5150
+ }, "-m")), (0, _react2.mdx)("td", {
5151
+ parentName: "tr",
5152
+ "align": null
5153
+ }, "log message describing the latest changes")), (0, _react2.mdx)("tr", {
5154
+ parentName: "tbody"
5155
+ }, (0, _react2.mdx)("td", {
5156
+ parentName: "tr",
5157
+ "align": null
5158
+ }, (0, _react2.mdx)("inlineCode", {
5159
+ parentName: "td"
5160
+ }, "--unmodified")), (0, _react2.mdx)("td", {
5161
+ parentName: "tr",
5162
+ "align": "center"
5163
+ }), (0, _react2.mdx)("td", {
5164
+ parentName: "tr",
5165
+ "align": null
5166
+ }, "include unmodified components (by default, only new and modified components are snapped)")), (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
+ }, "--unmerged")), (0, _react2.mdx)("td", {
5174
+ parentName: "tr",
5175
+ "align": "center"
5176
+ }), (0, _react2.mdx)("td", {
5177
+ parentName: "tr",
5178
+ "align": null
5179
+ }, "EXPERIMENTAL. complete a merge process by snapping the unmerged components")), (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
+ }, "--build")), (0, _react2.mdx)("td", {
5187
+ parentName: "tr",
5188
+ "align": "center"
5189
+ }, (0, _react2.mdx)("inlineCode", {
5190
+ parentName: "td"
5191
+ }, "-b")), (0, _react2.mdx)("td", {
5192
+ parentName: "tr",
5193
+ "align": null
5194
+ }, "EXPERIMENTAL. not needed for now. run the build pipeline in case the feature-flag build-on-ci is enabled")), (0, _react2.mdx)("tr", {
5195
+ parentName: "tbody"
5196
+ }, (0, _react2.mdx)("td", {
5197
+ parentName: "tr",
5198
+ "align": null
5199
+ }, (0, _react2.mdx)("inlineCode", {
5200
+ parentName: "td"
5201
+ }, "--editor [editor]")), (0, _react2.mdx)("td", {
5202
+ parentName: "tr",
5203
+ "align": "center"
5204
+ }), (0, _react2.mdx)("td", {
5205
+ parentName: "tr",
5206
+ "align": null
5207
+ }, "EXPERIMENTAL. open an editor to write a tag message for each component. optionally, specify the editor-name (defaults to vim).")), (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
+ }, "--skip-tests")), (0, _react2.mdx)("td", {
5215
+ parentName: "tr",
5216
+ "align": "center"
5217
+ }), (0, _react2.mdx)("td", {
5218
+ parentName: "tr",
5219
+ "align": null
5220
+ }, "skip running component tests during snap process")), (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-auto-snap")), (0, _react2.mdx)("td", {
5228
+ parentName: "tr",
5229
+ "align": "center"
5230
+ }), (0, _react2.mdx)("td", {
5231
+ parentName: "tr",
5232
+ "align": null
5233
+ }, "skip auto snapping dependents")), (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
+ }, "--disable-snap-pipeline")), (0, _react2.mdx)("td", {
5241
+ parentName: "tr",
5242
+ "align": "center"
5243
+ }), (0, _react2.mdx)("td", {
5244
+ parentName: "tr",
5245
+ "align": null
5246
+ }, "skip the snap pipeline")), (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
+ }, "--force-deploy")), (0, _react2.mdx)("td", {
5254
+ parentName: "tr",
5255
+ "align": "center"
5256
+ }), (0, _react2.mdx)("td", {
5257
+ parentName: "tr",
5258
+ "align": null
5259
+ }, "run the deploy pipeline although the build failed")), (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
+ }, "--ignore-issues [issues]")), (0, _react2.mdx)("td", {
5267
+ parentName: "tr",
5268
+ "align": "center"
5269
+ }, (0, _react2.mdx)("inlineCode", {
5270
+ parentName: "td"
5271
+ }, "-i")), (0, _react2.mdx)("td", {
5272
+ parentName: "tr",
5273
+ "align": null
5274
+ }, "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", {
5275
+ parentName: "tbody"
5276
+ }, (0, _react2.mdx)("td", {
5277
+ parentName: "tr",
5278
+ "align": null
5279
+ }, (0, _react2.mdx)("inlineCode", {
5280
+ parentName: "td"
5281
+ }, "--all")), (0, _react2.mdx)("td", {
5282
+ parentName: "tr",
5283
+ "align": "center"
5284
+ }, (0, _react2.mdx)("inlineCode", {
5285
+ parentName: "td"
5286
+ }, "-a")), (0, _react2.mdx)("td", {
5287
+ parentName: "tr",
5288
+ "align": null
5289
+ }, "DEPRECATED (not needed anymore, it is the default now). snap all new and modified components")), (0, _react2.mdx)("tr", {
5290
+ parentName: "tbody"
5291
+ }, (0, _react2.mdx)("td", {
5292
+ parentName: "tr",
5293
+ "align": null
5294
+ }, (0, _react2.mdx)("inlineCode", {
5295
+ parentName: "td"
5296
+ }, "--force")), (0, _react2.mdx)("td", {
5297
+ parentName: "tr",
5298
+ "align": "center"
5299
+ }, (0, _react2.mdx)("inlineCode", {
5300
+ parentName: "td"
5301
+ }, "-f")), (0, _react2.mdx)("td", {
5302
+ parentName: "tr",
5303
+ "align": null
5304
+ }, "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
5305
  parentName: "p"
5062
5306
  }, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
5063
5307
  parentName: "p"