@teambit/harmony.content.cli-reference 1.95.36 → 1.95.37
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.json +76 -19
- package/cli-reference.mdx +17 -18
- package/dist/cli-reference.json +76 -19
- package/dist/cli-reference.mdx.js +80 -82
- package/dist/cli-reference.mdx.js.map +1 -1
- package/package-tar/teambit-harmony.content.cli-reference-1.95.37.tgz +0 -0
- package/package.json +2 -2
- package/{preview-1656386921357.js → preview-1656646049209.js} +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.36.tgz +0 -0
package/cli-reference.json
CHANGED
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
"description": "revert tagged or snapped versions for component(s)",
|
|
544
544
|
"extendedDescription": "https://bit.dev/docs/components/tags#undoing-a-tag\nyou can use a pattern for multiple ids, such as bit untag \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
|
|
545
545
|
"group": "development",
|
|
546
|
-
"private":
|
|
546
|
+
"private": true
|
|
547
547
|
},
|
|
548
548
|
{
|
|
549
549
|
"name": "move <current-component-dir> <new-component-dir>",
|
|
@@ -955,22 +955,6 @@
|
|
|
955
955
|
"group": "general",
|
|
956
956
|
"private": false
|
|
957
957
|
},
|
|
958
|
-
{
|
|
959
|
-
"name": "use [component-ids...]",
|
|
960
|
-
"alias": "",
|
|
961
|
-
"options": [],
|
|
962
|
-
"description": "set aspects in the workspace/scope config to make them loadable by the workspace/scope",
|
|
963
|
-
"extendedDescription": "",
|
|
964
|
-
"group": "collaborate",
|
|
965
|
-
"private": false,
|
|
966
|
-
"remoteOp": true,
|
|
967
|
-
"arguments": [
|
|
968
|
-
{
|
|
969
|
-
"name": "component-ids...",
|
|
970
|
-
"description": "the component IDs of the aspects"
|
|
971
|
-
}
|
|
972
|
-
]
|
|
973
|
-
},
|
|
974
958
|
{
|
|
975
959
|
"name": "show <component-name>",
|
|
976
960
|
"alias": "",
|
|
@@ -1048,7 +1032,7 @@
|
|
|
1048
1032
|
"arguments": [
|
|
1049
1033
|
{
|
|
1050
1034
|
"name": "component-pattern",
|
|
1051
|
-
"description": "component name, component id, or component pattern. use component pattern to select multiple components
|
|
1035
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nuse comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\"\nwrap the pattern with quotes"
|
|
1052
1036
|
},
|
|
1053
1037
|
{
|
|
1054
1038
|
"name": "env",
|
|
@@ -1484,6 +1468,22 @@
|
|
|
1484
1468
|
}
|
|
1485
1469
|
]
|
|
1486
1470
|
},
|
|
1471
|
+
{
|
|
1472
|
+
"name": "use <component-id>",
|
|
1473
|
+
"alias": "",
|
|
1474
|
+
"options": [],
|
|
1475
|
+
"description": "set aspects in the workspace/scope config to make them loadable by the workspace/scope",
|
|
1476
|
+
"extendedDescription": "",
|
|
1477
|
+
"group": "collaborate",
|
|
1478
|
+
"private": false,
|
|
1479
|
+
"remoteOp": true,
|
|
1480
|
+
"arguments": [
|
|
1481
|
+
{
|
|
1482
|
+
"name": "component-id",
|
|
1483
|
+
"description": "the component ID of the aspect"
|
|
1484
|
+
}
|
|
1485
|
+
]
|
|
1486
|
+
},
|
|
1487
1487
|
{
|
|
1488
1488
|
"name": "pattern <pattern>",
|
|
1489
1489
|
"alias": "",
|
|
@@ -1497,7 +1497,29 @@
|
|
|
1497
1497
|
"description": "list the component ids matching the given pattern",
|
|
1498
1498
|
"extendedDescription": "this command helps validating a pattern before using it in other commands.\na pattern can be a simple component-id or component-name. e.g. \"ui/button\".\na pattern can be used with wildcards for multiple component ids, e.g. \"org.scope/utils/**\".\nto enter multiple patterns, separate them by a comma, e.g. \"ui/*, lib/*\"\nto exclude, use \"!\". e.g. \"ui/**, !ui/button\"\nalways wrap the pattern with quotes to avoid collision with shell commands.\nthe matching algorithm is done by multimatch (@see https://github.com/sindresorhus/multimatch)\n",
|
|
1499
1499
|
"group": "development",
|
|
1500
|
-
"private": false
|
|
1500
|
+
"private": false,
|
|
1501
|
+
"examples": [
|
|
1502
|
+
{
|
|
1503
|
+
"cmd": "bit pattern \"**\"",
|
|
1504
|
+
"description": "matches all components"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"cmd": "bit pattern \"*/ui/*\"",
|
|
1508
|
+
"description": "matches components with any scope-name and the \"ui\" namespace. e.g. \"ui/button\" but not \"ui/elements/button\""
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"cmd": "bit pattern \"*/ui/**\"",
|
|
1512
|
+
"description": "matches components that their namespace starts with \"ui/\" e.g. \"ui/button\", \"ui/elements/button\""
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"cmd": "bit pattern \"bar, foo\"",
|
|
1516
|
+
"description": "matches two components: bar and foo"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"cmd": "bit pattern \"my-scope.org/**\"",
|
|
1520
|
+
"description": "matches all components of the scope \"my-scope.org\""
|
|
1521
|
+
}
|
|
1522
|
+
]
|
|
1501
1523
|
},
|
|
1502
1524
|
{
|
|
1503
1525
|
"name": "list [remote-scope]",
|
|
@@ -2167,6 +2189,41 @@
|
|
|
2167
2189
|
}
|
|
2168
2190
|
]
|
|
2169
2191
|
},
|
|
2192
|
+
{
|
|
2193
|
+
"name": "reset [component-pattern] [component-version]",
|
|
2194
|
+
"alias": "",
|
|
2195
|
+
"options": [
|
|
2196
|
+
[
|
|
2197
|
+
"a",
|
|
2198
|
+
"all",
|
|
2199
|
+
"revert tag/snap for all tagged/snapped components"
|
|
2200
|
+
],
|
|
2201
|
+
[
|
|
2202
|
+
"",
|
|
2203
|
+
"soft",
|
|
2204
|
+
"revert only soft-tags (components tagged with --soft flag)"
|
|
2205
|
+
],
|
|
2206
|
+
[
|
|
2207
|
+
"f",
|
|
2208
|
+
"force",
|
|
2209
|
+
"revert the tag even if used as a dependency. WARNING: components that depend on this tag will corrupt"
|
|
2210
|
+
]
|
|
2211
|
+
],
|
|
2212
|
+
"description": "revert tagged or snapped versions for component(s)",
|
|
2213
|
+
"extendedDescription": "https://bit.dev/docs/components/tags#undoing-a-tag",
|
|
2214
|
+
"group": "development",
|
|
2215
|
+
"private": false,
|
|
2216
|
+
"arguments": [
|
|
2217
|
+
{
|
|
2218
|
+
"name": "component-pattern",
|
|
2219
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nuse comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\"\nwrap the pattern with quotes"
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"name": "component-version",
|
|
2223
|
+
"description": "the version to untag (semver for tags. hash for snaps)"
|
|
2224
|
+
}
|
|
2225
|
+
]
|
|
2226
|
+
},
|
|
2170
2227
|
{
|
|
2171
2228
|
"name": "merge [values...]",
|
|
2172
2229
|
"alias": "",
|
package/cli-reference.mdx
CHANGED
|
@@ -953,6 +953,22 @@ you can use a pattern for multiple ids, such as bit remove "utils/\*". (wrap the
|
|
|
953
953
|
|
|
954
954
|
---
|
|
955
955
|
|
|
956
|
+
## reset
|
|
957
|
+
|
|
958
|
+
**Workspace only**: yes
|
|
959
|
+
**Description**: revert tagged or snapped versions for component(s)
|
|
960
|
+
https://bit.dev/docs/components/tags#undoing-a-tag
|
|
961
|
+
|
|
962
|
+
`bit reset [component-pattern] [component-version]`
|
|
963
|
+
|
|
964
|
+
| **Option** | **Option alias** | **Description** |
|
|
965
|
+
| ---------- | :--------------: | ----------------------------------------------------------------------------------------------------- |
|
|
966
|
+
| `--all` | `-a` | revert tag/snap for all tagged/snapped components |
|
|
967
|
+
| `--soft` | | revert only soft-tags (components tagged with --soft flag) |
|
|
968
|
+
| `--force` | `-f` | revert the tag even if used as a dependency. WARNING: components that depend on this tag will corrupt |
|
|
969
|
+
|
|
970
|
+
---
|
|
971
|
+
|
|
956
972
|
## run
|
|
957
973
|
|
|
958
974
|
**Alias**: `c`
|
|
@@ -1213,23 +1229,6 @@ list components templates when inside bit-workspace (for bit-create), otherwise,
|
|
|
1213
1229
|
|
|
1214
1230
|
---
|
|
1215
1231
|
|
|
1216
|
-
## untag
|
|
1217
|
-
|
|
1218
|
-
**Workspace only**: yes
|
|
1219
|
-
**Description**: revert tagged or snapped versions for component(s)
|
|
1220
|
-
https://bit.dev/docs/components/tags#undoing-a-tag
|
|
1221
|
-
you can use a pattern for multiple ids, such as bit untag "utils/\*". (wrap the pattern with quotes to avoid collision with shell commands)
|
|
1222
|
-
|
|
1223
|
-
`bit untag [component-name] [component-version]`
|
|
1224
|
-
|
|
1225
|
-
| **Option** | **Option alias** | **Description** |
|
|
1226
|
-
| ---------- | :--------------: | ----------------------------------------------------------------------------------------------------- |
|
|
1227
|
-
| `--all` | `-a` | revert tag for all tagged components |
|
|
1228
|
-
| `--soft` | | harmony - revert only soft-tags (components tagged with --soft flag) |
|
|
1229
|
-
| `--force` | `-f` | revert the tag even if used as a dependency. WARNING: components that depend on this tag will corrupt |
|
|
1230
|
-
|
|
1231
|
-
---
|
|
1232
|
-
|
|
1233
1232
|
## update
|
|
1234
1233
|
|
|
1235
1234
|
**Alias**: `up`
|
|
@@ -1249,7 +1248,7 @@ you can use a pattern for multiple ids, such as bit untag "utils/\*". (wrap the
|
|
|
1249
1248
|
**Workspace only**: yes
|
|
1250
1249
|
**Description**: set aspects in the workspace/scope config to make them loadable by the workspace/scope
|
|
1251
1250
|
|
|
1252
|
-
`bit use
|
|
1251
|
+
`bit use <component-id>`
|
|
1253
1252
|
|
|
1254
1253
|
---
|
|
1255
1254
|
|
package/dist/cli-reference.json
CHANGED
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
"description": "revert tagged or snapped versions for component(s)",
|
|
544
544
|
"extendedDescription": "https://bit.dev/docs/components/tags#undoing-a-tag\nyou can use a pattern for multiple ids, such as bit untag \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
|
|
545
545
|
"group": "development",
|
|
546
|
-
"private":
|
|
546
|
+
"private": true
|
|
547
547
|
},
|
|
548
548
|
{
|
|
549
549
|
"name": "move <current-component-dir> <new-component-dir>",
|
|
@@ -955,22 +955,6 @@
|
|
|
955
955
|
"group": "general",
|
|
956
956
|
"private": false
|
|
957
957
|
},
|
|
958
|
-
{
|
|
959
|
-
"name": "use [component-ids...]",
|
|
960
|
-
"alias": "",
|
|
961
|
-
"options": [],
|
|
962
|
-
"description": "set aspects in the workspace/scope config to make them loadable by the workspace/scope",
|
|
963
|
-
"extendedDescription": "",
|
|
964
|
-
"group": "collaborate",
|
|
965
|
-
"private": false,
|
|
966
|
-
"remoteOp": true,
|
|
967
|
-
"arguments": [
|
|
968
|
-
{
|
|
969
|
-
"name": "component-ids...",
|
|
970
|
-
"description": "the component IDs of the aspects"
|
|
971
|
-
}
|
|
972
|
-
]
|
|
973
|
-
},
|
|
974
958
|
{
|
|
975
959
|
"name": "show <component-name>",
|
|
976
960
|
"alias": "",
|
|
@@ -1048,7 +1032,7 @@
|
|
|
1048
1032
|
"arguments": [
|
|
1049
1033
|
{
|
|
1050
1034
|
"name": "component-pattern",
|
|
1051
|
-
"description": "component name, component id, or component pattern. use component pattern to select multiple components
|
|
1035
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nuse comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\"\nwrap the pattern with quotes"
|
|
1052
1036
|
},
|
|
1053
1037
|
{
|
|
1054
1038
|
"name": "env",
|
|
@@ -1484,6 +1468,22 @@
|
|
|
1484
1468
|
}
|
|
1485
1469
|
]
|
|
1486
1470
|
},
|
|
1471
|
+
{
|
|
1472
|
+
"name": "use <component-id>",
|
|
1473
|
+
"alias": "",
|
|
1474
|
+
"options": [],
|
|
1475
|
+
"description": "set aspects in the workspace/scope config to make them loadable by the workspace/scope",
|
|
1476
|
+
"extendedDescription": "",
|
|
1477
|
+
"group": "collaborate",
|
|
1478
|
+
"private": false,
|
|
1479
|
+
"remoteOp": true,
|
|
1480
|
+
"arguments": [
|
|
1481
|
+
{
|
|
1482
|
+
"name": "component-id",
|
|
1483
|
+
"description": "the component ID of the aspect"
|
|
1484
|
+
}
|
|
1485
|
+
]
|
|
1486
|
+
},
|
|
1487
1487
|
{
|
|
1488
1488
|
"name": "pattern <pattern>",
|
|
1489
1489
|
"alias": "",
|
|
@@ -1497,7 +1497,29 @@
|
|
|
1497
1497
|
"description": "list the component ids matching the given pattern",
|
|
1498
1498
|
"extendedDescription": "this command helps validating a pattern before using it in other commands.\na pattern can be a simple component-id or component-name. e.g. \"ui/button\".\na pattern can be used with wildcards for multiple component ids, e.g. \"org.scope/utils/**\".\nto enter multiple patterns, separate them by a comma, e.g. \"ui/*, lib/*\"\nto exclude, use \"!\". e.g. \"ui/**, !ui/button\"\nalways wrap the pattern with quotes to avoid collision with shell commands.\nthe matching algorithm is done by multimatch (@see https://github.com/sindresorhus/multimatch)\n",
|
|
1499
1499
|
"group": "development",
|
|
1500
|
-
"private": false
|
|
1500
|
+
"private": false,
|
|
1501
|
+
"examples": [
|
|
1502
|
+
{
|
|
1503
|
+
"cmd": "bit pattern \"**\"",
|
|
1504
|
+
"description": "matches all components"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"cmd": "bit pattern \"*/ui/*\"",
|
|
1508
|
+
"description": "matches components with any scope-name and the \"ui\" namespace. e.g. \"ui/button\" but not \"ui/elements/button\""
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"cmd": "bit pattern \"*/ui/**\"",
|
|
1512
|
+
"description": "matches components that their namespace starts with \"ui/\" e.g. \"ui/button\", \"ui/elements/button\""
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"cmd": "bit pattern \"bar, foo\"",
|
|
1516
|
+
"description": "matches two components: bar and foo"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"cmd": "bit pattern \"my-scope.org/**\"",
|
|
1520
|
+
"description": "matches all components of the scope \"my-scope.org\""
|
|
1521
|
+
}
|
|
1522
|
+
]
|
|
1501
1523
|
},
|
|
1502
1524
|
{
|
|
1503
1525
|
"name": "list [remote-scope]",
|
|
@@ -2167,6 +2189,41 @@
|
|
|
2167
2189
|
}
|
|
2168
2190
|
]
|
|
2169
2191
|
},
|
|
2192
|
+
{
|
|
2193
|
+
"name": "reset [component-pattern] [component-version]",
|
|
2194
|
+
"alias": "",
|
|
2195
|
+
"options": [
|
|
2196
|
+
[
|
|
2197
|
+
"a",
|
|
2198
|
+
"all",
|
|
2199
|
+
"revert tag/snap for all tagged/snapped components"
|
|
2200
|
+
],
|
|
2201
|
+
[
|
|
2202
|
+
"",
|
|
2203
|
+
"soft",
|
|
2204
|
+
"revert only soft-tags (components tagged with --soft flag)"
|
|
2205
|
+
],
|
|
2206
|
+
[
|
|
2207
|
+
"f",
|
|
2208
|
+
"force",
|
|
2209
|
+
"revert the tag even if used as a dependency. WARNING: components that depend on this tag will corrupt"
|
|
2210
|
+
]
|
|
2211
|
+
],
|
|
2212
|
+
"description": "revert tagged or snapped versions for component(s)",
|
|
2213
|
+
"extendedDescription": "https://bit.dev/docs/components/tags#undoing-a-tag",
|
|
2214
|
+
"group": "development",
|
|
2215
|
+
"private": false,
|
|
2216
|
+
"arguments": [
|
|
2217
|
+
{
|
|
2218
|
+
"name": "component-pattern",
|
|
2219
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nuse comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\"\nwrap the pattern with quotes"
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"name": "component-version",
|
|
2223
|
+
"description": "the version to untag (semver for tags. hash for snaps)"
|
|
2224
|
+
}
|
|
2225
|
+
]
|
|
2226
|
+
},
|
|
2170
2227
|
{
|
|
2171
2228
|
"name": "merge [values...]",
|
|
2172
2229
|
"alias": "",
|
|
@@ -4335,7 +4335,84 @@ function MDXContent(_ref) {
|
|
|
4335
4335
|
}, "-r")), (0, _react2.mdx)("td", {
|
|
4336
4336
|
parentName: "tr",
|
|
4337
4337
|
"align": null
|
|
4338
|
-
}, "update the import/require statements in all dependent components (in the same workspace)")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
4338
|
+
}, "update the import/require statements in all dependent components (in the same workspace)")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "reset"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
4339
|
+
parentName: "p"
|
|
4340
|
+
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
4341
|
+
parentName: "p"
|
|
4342
|
+
}), "\n", (0, _react2.mdx)("strong", {
|
|
4343
|
+
parentName: "p"
|
|
4344
|
+
}, "Description"), ": revert tagged or snapped versions for component(s)", (0, _react2.mdx)("br", {
|
|
4345
|
+
parentName: "p"
|
|
4346
|
+
}), "\n", (0, _react2.mdx)("a", {
|
|
4347
|
+
parentName: "p",
|
|
4348
|
+
"href": "https://bit.dev/docs/components/tags#undoing-a-tag"
|
|
4349
|
+
}, "https://bit.dev/docs/components/tags#undoing-a-tag")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
4350
|
+
parentName: "p"
|
|
4351
|
+
}, "bit reset [component-pattern] [component-version]")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
4352
|
+
parentName: "table"
|
|
4353
|
+
}, (0, _react2.mdx)("tr", {
|
|
4354
|
+
parentName: "thead"
|
|
4355
|
+
}, (0, _react2.mdx)("th", {
|
|
4356
|
+
parentName: "tr",
|
|
4357
|
+
"align": null
|
|
4358
|
+
}, (0, _react2.mdx)("strong", {
|
|
4359
|
+
parentName: "th"
|
|
4360
|
+
}, "Option")), (0, _react2.mdx)("th", {
|
|
4361
|
+
parentName: "tr",
|
|
4362
|
+
"align": "center"
|
|
4363
|
+
}, (0, _react2.mdx)("strong", {
|
|
4364
|
+
parentName: "th"
|
|
4365
|
+
}, "Option alias")), (0, _react2.mdx)("th", {
|
|
4366
|
+
parentName: "tr",
|
|
4367
|
+
"align": null
|
|
4368
|
+
}, (0, _react2.mdx)("strong", {
|
|
4369
|
+
parentName: "th"
|
|
4370
|
+
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
4371
|
+
parentName: "table"
|
|
4372
|
+
}, (0, _react2.mdx)("tr", {
|
|
4373
|
+
parentName: "tbody"
|
|
4374
|
+
}, (0, _react2.mdx)("td", {
|
|
4375
|
+
parentName: "tr",
|
|
4376
|
+
"align": null
|
|
4377
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
4378
|
+
parentName: "td"
|
|
4379
|
+
}, "--all")), (0, _react2.mdx)("td", {
|
|
4380
|
+
parentName: "tr",
|
|
4381
|
+
"align": "center"
|
|
4382
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
4383
|
+
parentName: "td"
|
|
4384
|
+
}, "-a")), (0, _react2.mdx)("td", {
|
|
4385
|
+
parentName: "tr",
|
|
4386
|
+
"align": null
|
|
4387
|
+
}, "revert tag/snap for all tagged/snapped components")), (0, _react2.mdx)("tr", {
|
|
4388
|
+
parentName: "tbody"
|
|
4389
|
+
}, (0, _react2.mdx)("td", {
|
|
4390
|
+
parentName: "tr",
|
|
4391
|
+
"align": null
|
|
4392
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
4393
|
+
parentName: "td"
|
|
4394
|
+
}, "--soft")), (0, _react2.mdx)("td", {
|
|
4395
|
+
parentName: "tr",
|
|
4396
|
+
"align": "center"
|
|
4397
|
+
}), (0, _react2.mdx)("td", {
|
|
4398
|
+
parentName: "tr",
|
|
4399
|
+
"align": null
|
|
4400
|
+
}, "revert only soft-tags (components tagged with --soft flag)")), (0, _react2.mdx)("tr", {
|
|
4401
|
+
parentName: "tbody"
|
|
4402
|
+
}, (0, _react2.mdx)("td", {
|
|
4403
|
+
parentName: "tr",
|
|
4404
|
+
"align": null
|
|
4405
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
4406
|
+
parentName: "td"
|
|
4407
|
+
}, "--force")), (0, _react2.mdx)("td", {
|
|
4408
|
+
parentName: "tr",
|
|
4409
|
+
"align": "center"
|
|
4410
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
4411
|
+
parentName: "td"
|
|
4412
|
+
}, "-f")), (0, _react2.mdx)("td", {
|
|
4413
|
+
parentName: "tr",
|
|
4414
|
+
"align": null
|
|
4415
|
+
}, "revert the tag even if used as a dependency. WARNING: components that depend on this tag will corrupt")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "run"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
4339
4416
|
parentName: "p"
|
|
4340
4417
|
}, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
4341
4418
|
parentName: "p"
|
|
@@ -5402,86 +5479,7 @@ function MDXContent(_ref) {
|
|
|
5402
5479
|
parentName: "p"
|
|
5403
5480
|
}, "Description"), ": uninstall dependencies"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
5404
5481
|
parentName: "p"
|
|
5405
|
-
}, "bit uninstall [packages...]")), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
5406
|
-
parentName: "p"
|
|
5407
|
-
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
5408
|
-
parentName: "p"
|
|
5409
|
-
}), "\n", (0, _react2.mdx)("strong", {
|
|
5410
|
-
parentName: "p"
|
|
5411
|
-
}, "Description"), ": revert tagged or snapped versions for component(s)", (0, _react2.mdx)("br", {
|
|
5412
|
-
parentName: "p"
|
|
5413
|
-
}), "\n", (0, _react2.mdx)("a", {
|
|
5414
|
-
parentName: "p",
|
|
5415
|
-
"href": "https://bit.dev/docs/components/tags#undoing-a-tag"
|
|
5416
|
-
}, "https://bit.dev/docs/components/tags#undoing-a-tag"), (0, _react2.mdx)("br", {
|
|
5417
|
-
parentName: "p"
|
|
5418
|
-
}), "\n", "you can use a pattern for multiple ids, such as bit untag \"utils/", "*", "\". (wrap the pattern with quotes to avoid collision with shell commands)"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
5419
|
-
parentName: "p"
|
|
5420
|
-
}, "bit untag [component-name] [component-version]")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
5421
|
-
parentName: "table"
|
|
5422
|
-
}, (0, _react2.mdx)("tr", {
|
|
5423
|
-
parentName: "thead"
|
|
5424
|
-
}, (0, _react2.mdx)("th", {
|
|
5425
|
-
parentName: "tr",
|
|
5426
|
-
"align": null
|
|
5427
|
-
}, (0, _react2.mdx)("strong", {
|
|
5428
|
-
parentName: "th"
|
|
5429
|
-
}, "Option")), (0, _react2.mdx)("th", {
|
|
5430
|
-
parentName: "tr",
|
|
5431
|
-
"align": "center"
|
|
5432
|
-
}, (0, _react2.mdx)("strong", {
|
|
5433
|
-
parentName: "th"
|
|
5434
|
-
}, "Option alias")), (0, _react2.mdx)("th", {
|
|
5435
|
-
parentName: "tr",
|
|
5436
|
-
"align": null
|
|
5437
|
-
}, (0, _react2.mdx)("strong", {
|
|
5438
|
-
parentName: "th"
|
|
5439
|
-
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
5440
|
-
parentName: "table"
|
|
5441
|
-
}, (0, _react2.mdx)("tr", {
|
|
5442
|
-
parentName: "tbody"
|
|
5443
|
-
}, (0, _react2.mdx)("td", {
|
|
5444
|
-
parentName: "tr",
|
|
5445
|
-
"align": null
|
|
5446
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
5447
|
-
parentName: "td"
|
|
5448
|
-
}, "--all")), (0, _react2.mdx)("td", {
|
|
5449
|
-
parentName: "tr",
|
|
5450
|
-
"align": "center"
|
|
5451
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
5452
|
-
parentName: "td"
|
|
5453
|
-
}, "-a")), (0, _react2.mdx)("td", {
|
|
5454
|
-
parentName: "tr",
|
|
5455
|
-
"align": null
|
|
5456
|
-
}, "revert tag for all tagged components")), (0, _react2.mdx)("tr", {
|
|
5457
|
-
parentName: "tbody"
|
|
5458
|
-
}, (0, _react2.mdx)("td", {
|
|
5459
|
-
parentName: "tr",
|
|
5460
|
-
"align": null
|
|
5461
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
5462
|
-
parentName: "td"
|
|
5463
|
-
}, "--soft")), (0, _react2.mdx)("td", {
|
|
5464
|
-
parentName: "tr",
|
|
5465
|
-
"align": "center"
|
|
5466
|
-
}), (0, _react2.mdx)("td", {
|
|
5467
|
-
parentName: "tr",
|
|
5468
|
-
"align": null
|
|
5469
|
-
}, "harmony - revert only soft-tags (components tagged with --soft flag)")), (0, _react2.mdx)("tr", {
|
|
5470
|
-
parentName: "tbody"
|
|
5471
|
-
}, (0, _react2.mdx)("td", {
|
|
5472
|
-
parentName: "tr",
|
|
5473
|
-
"align": null
|
|
5474
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
5475
|
-
parentName: "td"
|
|
5476
|
-
}, "--force")), (0, _react2.mdx)("td", {
|
|
5477
|
-
parentName: "tr",
|
|
5478
|
-
"align": "center"
|
|
5479
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
5480
|
-
parentName: "td"
|
|
5481
|
-
}, "-f")), (0, _react2.mdx)("td", {
|
|
5482
|
-
parentName: "tr",
|
|
5483
|
-
"align": null
|
|
5484
|
-
}, "revert the tag even if used as a dependency. WARNING: components that depend on this tag will corrupt")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "update"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5482
|
+
}, "bit uninstall [packages...]")), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "update"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5485
5483
|
parentName: "p"
|
|
5486
5484
|
}, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
5487
5485
|
parentName: "p"
|
|
@@ -5539,7 +5537,7 @@ function MDXContent(_ref) {
|
|
|
5539
5537
|
parentName: "p"
|
|
5540
5538
|
}, "Description"), ": set aspects in the workspace/scope config to make them loadable by the workspace/scope"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
5541
5539
|
parentName: "p"
|
|
5542
|
-
}, "bit use
|
|
5540
|
+
}, "bit use <component-id>")), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "watch"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5543
5541
|
parentName: "p"
|
|
5544
5542
|
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
5545
5543
|
parentName: "p"
|