@teambit/harmony.content.cli-reference 2.0.622 → 2.0.624

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.9.134'
2
+ description: 'Bit command synopses. Bit version: 1.9.136'
3
3
  labels: ['cli', 'mdx', 'docs']
4
4
  ---
@@ -2297,6 +2297,11 @@
2297
2297
  "fetch-deps",
2298
2298
  "fetch dependencies (bit components) objects to the local scope, but dont add to the workspace. Useful to resolve errors about missing dependency data"
2299
2299
  ],
2300
+ [
2301
+ "",
2302
+ "write-deps <workspace.jsonc|package.json>",
2303
+ "write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions"
2304
+ ],
2300
2305
  [
2301
2306
  "",
2302
2307
  "track-only",
@@ -2677,6 +2682,22 @@
2677
2682
  "description": "package-name. for components, you can use either component-id or package-name. if version is specified, it will search for the exact version"
2678
2683
  }
2679
2684
  ]
2685
+ },
2686
+ {
2687
+ "name": "write",
2688
+ "alias": "",
2689
+ "options": [
2690
+ [
2691
+ "",
2692
+ "target <workspace.jsonc|package.json>",
2693
+ "specify where the dependencies should be written. By default they are saved to workspace.jsonc"
2694
+ ]
2695
+ ],
2696
+ "description": "write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions",
2697
+ "extendedDescription": "",
2698
+ "group": "info",
2699
+ "private": false,
2700
+ "arguments": []
2680
2701
  }
2681
2702
  ]
2682
2703
  },
package/cli-reference.mdx CHANGED
@@ -671,6 +671,16 @@ see also "bit deps remove"
671
671
  | ------------------ | :--------------: | ----------------------------------------- |
672
672
  | `--depth <number>` | | max display depth of the dependency graph |
673
673
 
674
+ ### deps write
675
+
676
+ **Usage**: `deps write`
677
+
678
+ **Description**: write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions
679
+
680
+ | **Option** | **Option alias** | **Description** |
681
+ | -------------------------- | :--------------: | --------------- | ---------------------------------------------------------------------------------------------- |
682
+ | `--target <workspace.jsonc | package.json>` | | specify where the dependencies should be written. By default they are saved to workspace.jsonc |
683
+
674
684
  ---
675
685
 
676
686
  ## diff
@@ -982,7 +992,7 @@ bit export => export all staged snaps/tags of components to their remote scope.
982
992
  | `component-patterns...` | component IDs or component patterns (separated by space). Use patterns to import groups of components using a common scope or namespace. E.g., "utils/\*" (wrap with double quotes) |
983
993
 
984
994
  | **Option** | **Option alias** | **Description** |
985
- | -------------------------------- | :--------------: | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
995
+ | -------------------------------- | :--------------: | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
986
996
  | `--path <path>` | `-p` | import components into a specific directory (a relative path in the workspace) |
987
997
  | `--objects` | `-o` | import components objects to the local scope without checkout (without writing them to the file system). This is the default behavior for import with no id argument |
988
998
  | `--override` | `-O` | override local changes |
@@ -1002,6 +1012,7 @@ bit export => export all staged snaps/tags of components to their remote scope.
1002
1012
  | `--save-in-lane` | | when checked out to a lane and the component is not on the remote-lane, save it in the lane (defaults to save on main) |
1003
1013
  | `--all-history` | | relevant for fetching all components objects. avoid optimizations, fetch all history versions, always |
1004
1014
  | `--fetch-deps` | | fetch dependencies (bit components) objects to the local scope, but dont add to the workspace. Useful to resolve errors about missing dependency data |
1015
+ | `--write-deps <workspace.jsonc | package.json>` | | write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions |
1005
1016
  | `--track-only` | | do not write any component files, just create .bitmap entries of the imported components. Useful when the files already exist and just want to re-add the component to the bitmap |
1006
1017
  | `--include-deprecated` | | when importing with patterns, include deprecated components (default to exclude them) |
1007
1018
 
@@ -1,4 +1,4 @@
1
1
  ---
2
- description: 'Bit command synopses. Bit version: 1.9.134'
2
+ description: 'Bit command synopses. Bit version: 1.9.136'
3
3
  labels: ['cli', 'mdx', 'docs']
4
4
  ---
@@ -2297,6 +2297,11 @@
2297
2297
  "fetch-deps",
2298
2298
  "fetch dependencies (bit components) objects to the local scope, but dont add to the workspace. Useful to resolve errors about missing dependency data"
2299
2299
  ],
2300
+ [
2301
+ "",
2302
+ "write-deps <workspace.jsonc|package.json>",
2303
+ "write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions"
2304
+ ],
2300
2305
  [
2301
2306
  "",
2302
2307
  "track-only",
@@ -2677,6 +2682,22 @@
2677
2682
  "description": "package-name. for components, you can use either component-id or package-name. if version is specified, it will search for the exact version"
2678
2683
  }
2679
2684
  ]
2685
+ },
2686
+ {
2687
+ "name": "write",
2688
+ "alias": "",
2689
+ "options": [
2690
+ [
2691
+ "",
2692
+ "target <workspace.jsonc|package.json>",
2693
+ "specify where the dependencies should be written. By default they are saved to workspace.jsonc"
2694
+ ]
2695
+ ],
2696
+ "description": "write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions",
2697
+ "extendedDescription": "",
2698
+ "group": "info",
2699
+ "private": false,
2700
+ "arguments": []
2680
2701
  }
2681
2702
  ]
2682
2703
  },
@@ -3368,7 +3368,51 @@ function MDXContent(_ref) {
3368
3368
  }), (0, _react2.mdx)("td", {
3369
3369
  parentName: "tr",
3370
3370
  "align": null
3371
- }, "max display depth of the dependency graph")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "diff"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
3371
+ }, "max display depth of the dependency graph")))), (0, _react2.mdx)("h3", null, "deps write"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
3372
+ parentName: "p"
3373
+ }, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
3374
+ parentName: "p"
3375
+ }, "deps write")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
3376
+ parentName: "p"
3377
+ }, "Description"), ": write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions"), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
3378
+ parentName: "table"
3379
+ }, (0, _react2.mdx)("tr", {
3380
+ parentName: "thead"
3381
+ }, (0, _react2.mdx)("th", {
3382
+ parentName: "tr",
3383
+ "align": null
3384
+ }, (0, _react2.mdx)("strong", {
3385
+ parentName: "th"
3386
+ }, "Option")), (0, _react2.mdx)("th", {
3387
+ parentName: "tr",
3388
+ "align": "center"
3389
+ }, (0, _react2.mdx)("strong", {
3390
+ parentName: "th"
3391
+ }, "Option alias")), (0, _react2.mdx)("th", {
3392
+ parentName: "tr",
3393
+ "align": null
3394
+ }, (0, _react2.mdx)("strong", {
3395
+ parentName: "th"
3396
+ }, "Description")), (0, _react2.mdx)("th", {
3397
+ parentName: "tr",
3398
+ "align": null
3399
+ }))), (0, _react2.mdx)("tbody", {
3400
+ parentName: "table"
3401
+ }, (0, _react2.mdx)("tr", {
3402
+ parentName: "tbody"
3403
+ }, (0, _react2.mdx)("td", {
3404
+ parentName: "tr",
3405
+ "align": null
3406
+ }, "`--target <workspace.jsonc"), (0, _react2.mdx)("td", {
3407
+ parentName: "tr",
3408
+ "align": "center"
3409
+ }, "package.json>`"), (0, _react2.mdx)("td", {
3410
+ parentName: "tr",
3411
+ "align": null
3412
+ }), (0, _react2.mdx)("td", {
3413
+ parentName: "tr",
3414
+ "align": null
3415
+ }, "specify where the dependencies should be written. By default they are saved to workspace.jsonc")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "diff"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
3372
3416
  parentName: "p"
3373
3417
  }, "Description"), ": show the diff between the components' current source files and config, and their latest snapshot or tag"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
3374
3418
  parentName: "p"
@@ -4892,7 +4936,10 @@ function MDXContent(_ref) {
4892
4936
  "align": null
4893
4937
  }, (0, _react2.mdx)("strong", {
4894
4938
  parentName: "th"
4895
- }, "Description")))), (0, _react2.mdx)("tbody", {
4939
+ }, "Description")), (0, _react2.mdx)("th", {
4940
+ parentName: "tr",
4941
+ "align": null
4942
+ }))), (0, _react2.mdx)("tbody", {
4896
4943
  parentName: "table"
4897
4944
  }, (0, _react2.mdx)("tr", {
4898
4945
  parentName: "tbody"
@@ -4909,7 +4956,10 @@ function MDXContent(_ref) {
4909
4956
  }, "-p")), (0, _react2.mdx)("td", {
4910
4957
  parentName: "tr",
4911
4958
  "align": null
4912
- }, "import components into a specific directory (a relative path in the workspace)")), (0, _react2.mdx)("tr", {
4959
+ }, "import components into a specific directory (a relative path in the workspace)"), (0, _react2.mdx)("td", {
4960
+ parentName: "tr",
4961
+ "align": null
4962
+ })), (0, _react2.mdx)("tr", {
4913
4963
  parentName: "tbody"
4914
4964
  }, (0, _react2.mdx)("td", {
4915
4965
  parentName: "tr",
@@ -4924,7 +4974,10 @@ function MDXContent(_ref) {
4924
4974
  }, "-o")), (0, _react2.mdx)("td", {
4925
4975
  parentName: "tr",
4926
4976
  "align": null
4927
- }, "import components objects to the local scope without checkout (without writing them to the file system). This is the default behavior for import with no id argument")), (0, _react2.mdx)("tr", {
4977
+ }, "import components objects to the local scope without checkout (without writing them to the file system). This is the default behavior for import with no id argument"), (0, _react2.mdx)("td", {
4978
+ parentName: "tr",
4979
+ "align": null
4980
+ })), (0, _react2.mdx)("tr", {
4928
4981
  parentName: "tbody"
4929
4982
  }, (0, _react2.mdx)("td", {
4930
4983
  parentName: "tr",
@@ -4939,7 +4992,10 @@ function MDXContent(_ref) {
4939
4992
  }, "-O")), (0, _react2.mdx)("td", {
4940
4993
  parentName: "tr",
4941
4994
  "align": null
4942
- }, "override local changes")), (0, _react2.mdx)("tr", {
4995
+ }, "override local changes"), (0, _react2.mdx)("td", {
4996
+ parentName: "tr",
4997
+ "align": null
4998
+ })), (0, _react2.mdx)("tr", {
4943
4999
  parentName: "tbody"
4944
5000
  }, (0, _react2.mdx)("td", {
4945
5001
  parentName: "tr",
@@ -4954,7 +5010,10 @@ function MDXContent(_ref) {
4954
5010
  }, "-v")), (0, _react2.mdx)("td", {
4955
5011
  parentName: "tr",
4956
5012
  "align": null
4957
- }, "show verbose output for inspection")), (0, _react2.mdx)("tr", {
5013
+ }, "show verbose output for inspection"), (0, _react2.mdx)("td", {
5014
+ parentName: "tr",
5015
+ "align": null
5016
+ })), (0, _react2.mdx)("tr", {
4958
5017
  parentName: "tbody"
4959
5018
  }, (0, _react2.mdx)("td", {
4960
5019
  parentName: "tr",
@@ -4969,7 +5028,10 @@ function MDXContent(_ref) {
4969
5028
  }, "-j")), (0, _react2.mdx)("td", {
4970
5029
  parentName: "tr",
4971
5030
  "align": null
4972
- }, "return the output as JSON")), (0, _react2.mdx)("tr", {
5031
+ }, "return the output as JSON"), (0, _react2.mdx)("td", {
5032
+ parentName: "tr",
5033
+ "align": null
5034
+ })), (0, _react2.mdx)("tr", {
4973
5035
  parentName: "tbody"
4974
5036
  }, (0, _react2.mdx)("td", {
4975
5037
  parentName: "tr",
@@ -4984,7 +5046,10 @@ function MDXContent(_ref) {
4984
5046
  }, "-x")), (0, _react2.mdx)("td", {
4985
5047
  parentName: "tr",
4986
5048
  "align": null
4987
- }, "do not auto-install dependencies of the imported components")), (0, _react2.mdx)("tr", {
5049
+ }, "do not auto-install dependencies of the imported components"), (0, _react2.mdx)("td", {
5050
+ parentName: "tr",
5051
+ "align": null
5052
+ })), (0, _react2.mdx)("tr", {
4988
5053
  parentName: "tbody"
4989
5054
  }, (0, _react2.mdx)("td", {
4990
5055
  parentName: "tr",
@@ -4997,7 +5062,10 @@ function MDXContent(_ref) {
4997
5062
  }), (0, _react2.mdx)("td", {
4998
5063
  parentName: "tr",
4999
5064
  "align": null
5000
- }, "do not write config files (such as eslint, tsconfig, prettier, etc...)")), (0, _react2.mdx)("tr", {
5065
+ }, "do not write config files (such as eslint, tsconfig, prettier, etc...)"), (0, _react2.mdx)("td", {
5066
+ parentName: "tr",
5067
+ "align": null
5068
+ })), (0, _react2.mdx)("tr", {
5001
5069
  parentName: "tbody"
5002
5070
  }, (0, _react2.mdx)("td", {
5003
5071
  parentName: "tr",
@@ -5012,7 +5080,10 @@ function MDXContent(_ref) {
5012
5080
  }, "-m")), (0, _react2.mdx)("td", {
5013
5081
  parentName: "tr",
5014
5082
  "align": null
5015
- }, "merge local changes with the imported version. strategy should be \"theirs\", \"ours\" or \"manual\"")), (0, _react2.mdx)("tr", {
5083
+ }, "merge local changes with the imported version. strategy should be \"theirs\", \"ours\" or \"manual\""), (0, _react2.mdx)("td", {
5084
+ parentName: "tr",
5085
+ "align": null
5086
+ })), (0, _react2.mdx)("tr", {
5016
5087
  parentName: "tbody"
5017
5088
  }, (0, _react2.mdx)("td", {
5018
5089
  parentName: "tr",
@@ -5025,7 +5096,10 @@ function MDXContent(_ref) {
5025
5096
  }), (0, _react2.mdx)("td", {
5026
5097
  parentName: "tr",
5027
5098
  "align": null
5028
- }, "import all dependencies (bit components only) of imported components and write them to the workspace")), (0, _react2.mdx)("tr", {
5099
+ }, "import all dependencies (bit components only) of imported components and write them to the workspace"), (0, _react2.mdx)("td", {
5100
+ parentName: "tr",
5101
+ "align": null
5102
+ })), (0, _react2.mdx)("tr", {
5029
5103
  parentName: "tbody"
5030
5104
  }, (0, _react2.mdx)("td", {
5031
5105
  parentName: "tr",
@@ -5038,7 +5112,10 @@ function MDXContent(_ref) {
5038
5112
  }), (0, _react2.mdx)("td", {
5039
5113
  parentName: "tr",
5040
5114
  "align": null
5041
- }, "same as --dependencies, except it imports the dependencies with their head version")), (0, _react2.mdx)("tr", {
5115
+ }, "same as --dependencies, except it imports the dependencies with their head version"), (0, _react2.mdx)("td", {
5116
+ parentName: "tr",
5117
+ "align": null
5118
+ })), (0, _react2.mdx)("tr", {
5042
5119
  parentName: "tbody"
5043
5120
  }, (0, _react2.mdx)("td", {
5044
5121
  parentName: "tr",
@@ -5051,7 +5128,10 @@ function MDXContent(_ref) {
5051
5128
  }), (0, _react2.mdx)("td", {
5052
5129
  parentName: "tr",
5053
5130
  "align": null
5054
- }, "import components found while traversing from the imported components upwards to the workspace components")), (0, _react2.mdx)("tr", {
5131
+ }, "import components found while traversing from the imported components upwards to the workspace components"), (0, _react2.mdx)("td", {
5132
+ parentName: "tr",
5133
+ "align": null
5134
+ })), (0, _react2.mdx)("tr", {
5055
5135
  parentName: "tbody"
5056
5136
  }, (0, _react2.mdx)("td", {
5057
5137
  parentName: "tr",
@@ -5064,7 +5144,10 @@ function MDXContent(_ref) {
5064
5144
  }), (0, _react2.mdx)("td", {
5065
5145
  parentName: "tr",
5066
5146
  "align": null
5067
- }, "same as --dependents except the traversal must go through the specified component. to specify multiple components, wrap with quotes and separate by a comma")), (0, _react2.mdx)("tr", {
5147
+ }, "same as --dependents except the traversal must go through the specified component. to specify multiple components, wrap with quotes and separate by a comma"), (0, _react2.mdx)("td", {
5148
+ parentName: "tr",
5149
+ "align": null
5150
+ })), (0, _react2.mdx)("tr", {
5068
5151
  parentName: "tbody"
5069
5152
  }, (0, _react2.mdx)("td", {
5070
5153
  parentName: "tr",
@@ -5077,7 +5160,10 @@ function MDXContent(_ref) {
5077
5160
  }), (0, _react2.mdx)("td", {
5078
5161
  parentName: "tr",
5079
5162
  "align": null
5080
- }, "same as --dependents except not prompting for selecting paths but rather selecting all paths and showing final confirmation before importing")), (0, _react2.mdx)("tr", {
5163
+ }, "same as --dependents except not prompting for selecting paths but rather selecting all paths and showing final confirmation before importing"), (0, _react2.mdx)("td", {
5164
+ parentName: "tr",
5165
+ "align": null
5166
+ })), (0, _react2.mdx)("tr", {
5081
5167
  parentName: "tbody"
5082
5168
  }, (0, _react2.mdx)("td", {
5083
5169
  parentName: "tr",
@@ -5090,7 +5176,10 @@ function MDXContent(_ref) {
5090
5176
  }), (0, _react2.mdx)("td", {
5091
5177
  parentName: "tr",
5092
5178
  "align": null
5093
- }, "DEPRECATED. (this is the default now). same as --dependents, except it prints the found dependents and wait for confirmation before importing them")), (0, _react2.mdx)("tr", {
5179
+ }, "DEPRECATED. (this is the default now). same as --dependents, except it prints the found dependents and wait for confirmation before importing them"), (0, _react2.mdx)("td", {
5180
+ parentName: "tr",
5181
+ "align": null
5182
+ })), (0, _react2.mdx)("tr", {
5094
5183
  parentName: "tbody"
5095
5184
  }, (0, _react2.mdx)("td", {
5096
5185
  parentName: "tr",
@@ -5103,7 +5192,10 @@ function MDXContent(_ref) {
5103
5192
  }), (0, _react2.mdx)("td", {
5104
5193
  parentName: "tr",
5105
5194
  "align": null
5106
- }, "no prompt for --dependents/--dependents-via flags")), (0, _react2.mdx)("tr", {
5195
+ }, "no prompt for --dependents/--dependents-via flags"), (0, _react2.mdx)("td", {
5196
+ parentName: "tr",
5197
+ "align": null
5198
+ })), (0, _react2.mdx)("tr", {
5107
5199
  parentName: "tbody"
5108
5200
  }, (0, _react2.mdx)("td", {
5109
5201
  parentName: "tr",
@@ -5116,7 +5208,10 @@ function MDXContent(_ref) {
5116
5208
  }), (0, _react2.mdx)("td", {
5117
5209
  parentName: "tr",
5118
5210
  "align": null
5119
- }, "only import components that have the specified environment (e.g., \"teambit.react/react-env\")")), (0, _react2.mdx)("tr", {
5211
+ }, "only import components that have the specified environment (e.g., \"teambit.react/react-env\")"), (0, _react2.mdx)("td", {
5212
+ parentName: "tr",
5213
+ "align": null
5214
+ })), (0, _react2.mdx)("tr", {
5120
5215
  parentName: "tbody"
5121
5216
  }, (0, _react2.mdx)("td", {
5122
5217
  parentName: "tr",
@@ -5129,7 +5224,10 @@ function MDXContent(_ref) {
5129
5224
  }), (0, _react2.mdx)("td", {
5130
5225
  parentName: "tr",
5131
5226
  "align": null
5132
- }, "when checked out to a lane and the component is not on the remote-lane, save it in the lane (defaults to save on main)")), (0, _react2.mdx)("tr", {
5227
+ }, "when checked out to a lane and the component is not on the remote-lane, save it in the lane (defaults to save on main)"), (0, _react2.mdx)("td", {
5228
+ parentName: "tr",
5229
+ "align": null
5230
+ })), (0, _react2.mdx)("tr", {
5133
5231
  parentName: "tbody"
5134
5232
  }, (0, _react2.mdx)("td", {
5135
5233
  parentName: "tr",
@@ -5142,7 +5240,10 @@ function MDXContent(_ref) {
5142
5240
  }), (0, _react2.mdx)("td", {
5143
5241
  parentName: "tr",
5144
5242
  "align": null
5145
- }, "relevant for fetching all components objects. avoid optimizations, fetch all history versions, always")), (0, _react2.mdx)("tr", {
5243
+ }, "relevant for fetching all components objects. avoid optimizations, fetch all history versions, always"), (0, _react2.mdx)("td", {
5244
+ parentName: "tr",
5245
+ "align": null
5246
+ })), (0, _react2.mdx)("tr", {
5146
5247
  parentName: "tbody"
5147
5248
  }, (0, _react2.mdx)("td", {
5148
5249
  parentName: "tr",
@@ -5155,7 +5256,24 @@ function MDXContent(_ref) {
5155
5256
  }), (0, _react2.mdx)("td", {
5156
5257
  parentName: "tr",
5157
5258
  "align": null
5158
- }, "fetch dependencies (bit components) objects to the local scope, but dont add to the workspace. Useful to resolve errors about missing dependency data")), (0, _react2.mdx)("tr", {
5259
+ }, "fetch dependencies (bit components) objects to the local scope, but dont add to the workspace. Useful to resolve errors about missing dependency data"), (0, _react2.mdx)("td", {
5260
+ parentName: "tr",
5261
+ "align": null
5262
+ })), (0, _react2.mdx)("tr", {
5263
+ parentName: "tbody"
5264
+ }, (0, _react2.mdx)("td", {
5265
+ parentName: "tr",
5266
+ "align": null
5267
+ }, "`--write-deps <workspace.jsonc"), (0, _react2.mdx)("td", {
5268
+ parentName: "tr",
5269
+ "align": "center"
5270
+ }, "package.json>`"), (0, _react2.mdx)("td", {
5271
+ parentName: "tr",
5272
+ "align": null
5273
+ }), (0, _react2.mdx)("td", {
5274
+ parentName: "tr",
5275
+ "align": null
5276
+ }, "write all workspace component dependencies to package.json or workspace.jsonc, resolving conflicts by picking the ranges that match the highest versions")), (0, _react2.mdx)("tr", {
5159
5277
  parentName: "tbody"
5160
5278
  }, (0, _react2.mdx)("td", {
5161
5279
  parentName: "tr",
@@ -5168,7 +5286,10 @@ function MDXContent(_ref) {
5168
5286
  }), (0, _react2.mdx)("td", {
5169
5287
  parentName: "tr",
5170
5288
  "align": null
5171
- }, "do not write any component files, just create .bitmap entries of the imported components. Useful when the files already exist and just want to re-add the component to the bitmap")), (0, _react2.mdx)("tr", {
5289
+ }, "do not write any component files, just create .bitmap entries of the imported components. Useful when the files already exist and just want to re-add the component to the bitmap"), (0, _react2.mdx)("td", {
5290
+ parentName: "tr",
5291
+ "align": null
5292
+ })), (0, _react2.mdx)("tr", {
5172
5293
  parentName: "tbody"
5173
5294
  }, (0, _react2.mdx)("td", {
5174
5295
  parentName: "tr",
@@ -5181,7 +5302,10 @@ function MDXContent(_ref) {
5181
5302
  }), (0, _react2.mdx)("td", {
5182
5303
  parentName: "tr",
5183
5304
  "align": null
5184
- }, "when importing with patterns, include deprecated components (default to exclude them)")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "init"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
5305
+ }, "when importing with patterns, include deprecated components (default to exclude them)"), (0, _react2.mdx)("td", {
5306
+ parentName: "tr",
5307
+ "align": null
5308
+ })))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "init"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
5185
5309
  parentName: "p"
5186
5310
  }, "Description"), ": create or reinitialize an empty workspace", (0, _react2.mdx)("br", {
5187
5311
  parentName: "p"