@teambit/harmony.content.cli-reference 2.0.351 → 2.0.352
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.docs.mdx +1 -1
- package/cli-reference.json +56 -1
- package/cli-reference.mdx +36 -1
- package/dist/cli-reference.docs.mdx +1 -1
- package/dist/cli-reference.json +56 -1
- package/dist/cli-reference.mdx.js +98 -3
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1721618348248.js → preview-1721704844483.js} +2 -2
- package/package.json +2 -2
package/cli-reference.docs.mdx
CHANGED
package/cli-reference.json
CHANGED
|
@@ -1117,7 +1117,7 @@
|
|
|
1117
1117
|
]
|
|
1118
1118
|
],
|
|
1119
1119
|
"description": "list the component ids matching the given pattern",
|
|
1120
|
-
"extendedDescription": "this command helps validating a pattern before using it in other commands.\nNOTE: always wrap the pattern with quotes to avoid collision with shell commands. depending on your shell, it might be single or double quotes.\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/**' or '**/utils/**' to capture all org/scopes.\nto enter multiple patterns, separate them by a comma, e.g. 'ui/*, lib/*'\nto exclude, use '!'. e.g. 'ui/**, !ui/button'\nthe matching algorithm is from multimatch (@see https://github.com/sindresorhus/multimatch).\n\nto filter by a state or attribute, prefix the pattern with \"$\". e.g. '$deprecated', '$modified'.\nlist of supported states: [new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified].\nto filter by multi-params state/attribute, separate the params with \":\", e.g. '$env:teambit.react/react'.\nlist of supported multi-params states: [env].\nto match a state and another criteria, use \" AND \" keyword. e.g. '$modified AND teambit.workspace/**'. note that the state must be first.\n",
|
|
1120
|
+
"extendedDescription": "this command helps validating a pattern before using it in other commands.\nNOTE: always wrap the pattern with quotes to avoid collision with shell commands. depending on your shell, it might be single or double quotes.\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/**' or '**/utils/**' to capture all org/scopes.\nto enter multiple patterns, separate them by a comma, e.g. 'ui/*, lib/*'\nto exclude, use '!'. e.g. 'ui/**, !ui/button'\nthe matching algorithm is from multimatch (@see https://github.com/sindresorhus/multimatch).\n\nto filter by a state or attribute, prefix the pattern with \"$\". e.g. '$deprecated', '$modified'.\nlist of supported states: [new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified, localOnly].\nto filter by multi-params state/attribute, separate the params with \":\", e.g. '$env:teambit.react/react'.\nlist of supported multi-params states: [env].\nto match a state and another criteria, use \" AND \" keyword. e.g. '$modified AND teambit.workspace/**'. note that the state must be first.\n",
|
|
1121
1121
|
"group": "development",
|
|
1122
1122
|
"private": false,
|
|
1123
1123
|
"examples": [
|
|
@@ -1143,6 +1143,56 @@
|
|
|
1143
1143
|
}
|
|
1144
1144
|
]
|
|
1145
1145
|
},
|
|
1146
|
+
{
|
|
1147
|
+
"name": "local-only <sub-command>",
|
|
1148
|
+
"alias": "",
|
|
1149
|
+
"options": [],
|
|
1150
|
+
"description": "manage local-only components, which reside only in the workspace and are not snapped/tagged",
|
|
1151
|
+
"extendedDescription": "",
|
|
1152
|
+
"group": "development",
|
|
1153
|
+
"private": false,
|
|
1154
|
+
"commands": [
|
|
1155
|
+
{
|
|
1156
|
+
"name": "set <component-pattern>",
|
|
1157
|
+
"alias": "",
|
|
1158
|
+
"options": [],
|
|
1159
|
+
"description": "set a component as local-only",
|
|
1160
|
+
"extendedDescription": "",
|
|
1161
|
+
"group": "ungrouped",
|
|
1162
|
+
"private": false,
|
|
1163
|
+
"arguments": [
|
|
1164
|
+
{
|
|
1165
|
+
"name": "component-pattern",
|
|
1166
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nwrap the pattern with quotes. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\".\nuse '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'.\nuse `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
1167
|
+
}
|
|
1168
|
+
]
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"name": "unset <component-pattern>",
|
|
1172
|
+
"alias": "",
|
|
1173
|
+
"options": [],
|
|
1174
|
+
"description": "remove a component from local-only",
|
|
1175
|
+
"extendedDescription": "",
|
|
1176
|
+
"group": "ungrouped",
|
|
1177
|
+
"private": false,
|
|
1178
|
+
"arguments": [
|
|
1179
|
+
{
|
|
1180
|
+
"name": "component-pattern",
|
|
1181
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nwrap the pattern with quotes. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\".\nuse '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'.\nuse `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
1182
|
+
}
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"name": "list",
|
|
1187
|
+
"alias": "",
|
|
1188
|
+
"options": [],
|
|
1189
|
+
"description": "list all local-only components",
|
|
1190
|
+
"extendedDescription": "",
|
|
1191
|
+
"group": "ungrouped",
|
|
1192
|
+
"private": false
|
|
1193
|
+
}
|
|
1194
|
+
]
|
|
1195
|
+
},
|
|
1146
1196
|
{
|
|
1147
1197
|
"name": "git <sub-command>",
|
|
1148
1198
|
"alias": "",
|
|
@@ -2864,6 +2914,11 @@
|
|
|
2864
2914
|
"b",
|
|
2865
2915
|
"build",
|
|
2866
2916
|
"locally run the build pipeline (i.e. not via rippleCI) and complete the tag"
|
|
2917
|
+
],
|
|
2918
|
+
[
|
|
2919
|
+
"",
|
|
2920
|
+
"include-local-only",
|
|
2921
|
+
"include local-only components in the tag process"
|
|
2867
2922
|
]
|
|
2868
2923
|
],
|
|
2869
2924
|
"description": "create an immutable and exportable component snapshot, tagged with a release version.",
|
package/cli-reference.mdx
CHANGED
|
@@ -1355,6 +1355,40 @@ this command does the following:
|
|
|
1355
1355
|
|
|
1356
1356
|
---
|
|
1357
1357
|
|
|
1358
|
+
## local-only
|
|
1359
|
+
|
|
1360
|
+
**Description**: manage local-only components, which reside only in the workspace and are not snapped/tagged
|
|
1361
|
+
|
|
1362
|
+
`bit local-only <sub-command>`
|
|
1363
|
+
|
|
1364
|
+
### local-only set
|
|
1365
|
+
|
|
1366
|
+
**Usage**: `local-only set <component-pattern>`
|
|
1367
|
+
|
|
1368
|
+
**Description**: set a component as local-only
|
|
1369
|
+
|
|
1370
|
+
| **Arg** | **Description** |
|
|
1371
|
+
| ------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|
|
1372
|
+
| `component-pattern` | component name, component id, or component pattern. use component pattern to select multiple components. wrap the pattern with quotes. use comma to separate patterns and "!" to exclude. e.g. "ui/\*\*, !ui/button". use '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'. use `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern. |
|
|
1373
|
+
|
|
1374
|
+
### local-only unset
|
|
1375
|
+
|
|
1376
|
+
**Usage**: `local-only unset <component-pattern>`
|
|
1377
|
+
|
|
1378
|
+
**Description**: remove a component from local-only
|
|
1379
|
+
|
|
1380
|
+
| **Arg** | **Description** |
|
|
1381
|
+
| ------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|
|
1382
|
+
| `component-pattern` | component name, component id, or component pattern. use component pattern to select multiple components. wrap the pattern with quotes. use comma to separate patterns and "!" to exclude. e.g. "ui/\*\*, !ui/button". use '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'. use `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern. |
|
|
1383
|
+
|
|
1384
|
+
### local-only list
|
|
1385
|
+
|
|
1386
|
+
**Usage**: `local-only list`
|
|
1387
|
+
|
|
1388
|
+
**Description**: list all local-only components
|
|
1389
|
+
|
|
1390
|
+
---
|
|
1391
|
+
|
|
1358
1392
|
## log
|
|
1359
1393
|
|
|
1360
1394
|
**Description**: show components(s) version history
|
|
@@ -1540,7 +1574,7 @@ to exclude, use '!'. e.g. 'ui/**, !ui/button'
|
|
|
1540
1574
|
the matching algorithm is from multimatch (@see https://github.com/sindresorhus/multimatch).
|
|
1541
1575
|
|
|
1542
1576
|
to filter by a state or attribute, prefix the pattern with "$". e.g. '$deprecated', '$modified'.
|
|
1543
|
-
list of supported states: [new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified].
|
|
1577
|
+
list of supported states: [new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified, localOnly].
|
|
1544
1578
|
to filter by multi-params state/attribute, separate the params with ":", e.g. '$env:teambit.react/react'.
|
|
1545
1579
|
list of supported multi-params states: [env].
|
|
1546
1580
|
to match a state and another criteria, use " AND " keyword. e.g. '$modified AND teambit.workspace/\*\*'. note that the state must be first.
|
|
@@ -2038,6 +2072,7 @@ if patterns are entered, you can specify a version per pattern using "@" sign, e
|
|
|
2038
2072
|
| `--ignore-newest-version` | `-I` | allow tagging even when the component has newer versions e.g. for hotfixes (default = false) |
|
|
2039
2073
|
| `--fail-fast` | | stop pipeline execution on the first failed task (by default a task is skipped only when its dependency failed) |
|
|
2040
2074
|
| `--build` | `-b` | locally run the build pipeline (i.e. not via rippleCI) and complete the tag |
|
|
2075
|
+
| `--include-local-only` | | include local-only components in the tag process |
|
|
2041
2076
|
|
|
2042
2077
|
---
|
|
2043
2078
|
|
package/dist/cli-reference.json
CHANGED
|
@@ -1117,7 +1117,7 @@
|
|
|
1117
1117
|
]
|
|
1118
1118
|
],
|
|
1119
1119
|
"description": "list the component ids matching the given pattern",
|
|
1120
|
-
"extendedDescription": "this command helps validating a pattern before using it in other commands.\nNOTE: always wrap the pattern with quotes to avoid collision with shell commands. depending on your shell, it might be single or double quotes.\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/**' or '**/utils/**' to capture all org/scopes.\nto enter multiple patterns, separate them by a comma, e.g. 'ui/*, lib/*'\nto exclude, use '!'. e.g. 'ui/**, !ui/button'\nthe matching algorithm is from multimatch (@see https://github.com/sindresorhus/multimatch).\n\nto filter by a state or attribute, prefix the pattern with \"$\". e.g. '$deprecated', '$modified'.\nlist of supported states: [new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified].\nto filter by multi-params state/attribute, separate the params with \":\", e.g. '$env:teambit.react/react'.\nlist of supported multi-params states: [env].\nto match a state and another criteria, use \" AND \" keyword. e.g. '$modified AND teambit.workspace/**'. note that the state must be first.\n",
|
|
1120
|
+
"extendedDescription": "this command helps validating a pattern before using it in other commands.\nNOTE: always wrap the pattern with quotes to avoid collision with shell commands. depending on your shell, it might be single or double quotes.\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/**' or '**/utils/**' to capture all org/scopes.\nto enter multiple patterns, separate them by a comma, e.g. 'ui/*, lib/*'\nto exclude, use '!'. e.g. 'ui/**, !ui/button'\nthe matching algorithm is from multimatch (@see https://github.com/sindresorhus/multimatch).\n\nto filter by a state or attribute, prefix the pattern with \"$\". e.g. '$deprecated', '$modified'.\nlist of supported states: [new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified, localOnly].\nto filter by multi-params state/attribute, separate the params with \":\", e.g. '$env:teambit.react/react'.\nlist of supported multi-params states: [env].\nto match a state and another criteria, use \" AND \" keyword. e.g. '$modified AND teambit.workspace/**'. note that the state must be first.\n",
|
|
1121
1121
|
"group": "development",
|
|
1122
1122
|
"private": false,
|
|
1123
1123
|
"examples": [
|
|
@@ -1143,6 +1143,56 @@
|
|
|
1143
1143
|
}
|
|
1144
1144
|
]
|
|
1145
1145
|
},
|
|
1146
|
+
{
|
|
1147
|
+
"name": "local-only <sub-command>",
|
|
1148
|
+
"alias": "",
|
|
1149
|
+
"options": [],
|
|
1150
|
+
"description": "manage local-only components, which reside only in the workspace and are not snapped/tagged",
|
|
1151
|
+
"extendedDescription": "",
|
|
1152
|
+
"group": "development",
|
|
1153
|
+
"private": false,
|
|
1154
|
+
"commands": [
|
|
1155
|
+
{
|
|
1156
|
+
"name": "set <component-pattern>",
|
|
1157
|
+
"alias": "",
|
|
1158
|
+
"options": [],
|
|
1159
|
+
"description": "set a component as local-only",
|
|
1160
|
+
"extendedDescription": "",
|
|
1161
|
+
"group": "ungrouped",
|
|
1162
|
+
"private": false,
|
|
1163
|
+
"arguments": [
|
|
1164
|
+
{
|
|
1165
|
+
"name": "component-pattern",
|
|
1166
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nwrap the pattern with quotes. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\".\nuse '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'.\nuse `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
1167
|
+
}
|
|
1168
|
+
]
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"name": "unset <component-pattern>",
|
|
1172
|
+
"alias": "",
|
|
1173
|
+
"options": [],
|
|
1174
|
+
"description": "remove a component from local-only",
|
|
1175
|
+
"extendedDescription": "",
|
|
1176
|
+
"group": "ungrouped",
|
|
1177
|
+
"private": false,
|
|
1178
|
+
"arguments": [
|
|
1179
|
+
{
|
|
1180
|
+
"name": "component-pattern",
|
|
1181
|
+
"description": "component name, component id, or component pattern. use component pattern to select multiple components.\nwrap the pattern with quotes. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\".\nuse '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'.\nuse `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
1182
|
+
}
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"name": "list",
|
|
1187
|
+
"alias": "",
|
|
1188
|
+
"options": [],
|
|
1189
|
+
"description": "list all local-only components",
|
|
1190
|
+
"extendedDescription": "",
|
|
1191
|
+
"group": "ungrouped",
|
|
1192
|
+
"private": false
|
|
1193
|
+
}
|
|
1194
|
+
]
|
|
1195
|
+
},
|
|
1146
1196
|
{
|
|
1147
1197
|
"name": "git <sub-command>",
|
|
1148
1198
|
"alias": "",
|
|
@@ -2864,6 +2914,11 @@
|
|
|
2864
2914
|
"b",
|
|
2865
2915
|
"build",
|
|
2866
2916
|
"locally run the build pipeline (i.e. not via rippleCI) and complete the tag"
|
|
2917
|
+
],
|
|
2918
|
+
[
|
|
2919
|
+
"",
|
|
2920
|
+
"include-local-only",
|
|
2921
|
+
"include local-only components in the tag process"
|
|
2867
2922
|
]
|
|
2868
2923
|
],
|
|
2869
2924
|
"description": "create an immutable and exportable component snapshot, tagged with a release version.",
|
|
@@ -7199,7 +7199,89 @@ function MDXContent(_ref) {
|
|
|
7199
7199
|
}, "-n")), (0, _react2.mdx)("td", {
|
|
7200
7200
|
parentName: "tr",
|
|
7201
7201
|
"align": null
|
|
7202
|
-
}, "show only components in the specified namespace/s e.g. '-n ui' or '", "*", "/ui'")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
7202
|
+
}, "show only components in the specified namespace/s e.g. '-n ui' or '", "*", "/ui'")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "local-only"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7203
|
+
parentName: "p"
|
|
7204
|
+
}, "Description"), ": manage local-only components, which reside only in the workspace and are not snapped/tagged"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
7205
|
+
parentName: "p"
|
|
7206
|
+
}, "bit local-only <sub-command>")), (0, _react2.mdx)("h3", null, "local-only set"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7207
|
+
parentName: "p"
|
|
7208
|
+
}, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
7209
|
+
parentName: "p"
|
|
7210
|
+
}, "local-only set <component-pattern>")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7211
|
+
parentName: "p"
|
|
7212
|
+
}, "Description"), ": set a component as local-only"), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
7213
|
+
parentName: "table"
|
|
7214
|
+
}, (0, _react2.mdx)("tr", {
|
|
7215
|
+
parentName: "thead"
|
|
7216
|
+
}, (0, _react2.mdx)("th", {
|
|
7217
|
+
parentName: "tr",
|
|
7218
|
+
"align": null
|
|
7219
|
+
}, (0, _react2.mdx)("strong", {
|
|
7220
|
+
parentName: "th"
|
|
7221
|
+
}, "Arg")), (0, _react2.mdx)("th", {
|
|
7222
|
+
parentName: "tr",
|
|
7223
|
+
"align": "center"
|
|
7224
|
+
}, (0, _react2.mdx)("strong", {
|
|
7225
|
+
parentName: "th"
|
|
7226
|
+
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
7227
|
+
parentName: "table"
|
|
7228
|
+
}, (0, _react2.mdx)("tr", {
|
|
7229
|
+
parentName: "tbody"
|
|
7230
|
+
}, (0, _react2.mdx)("td", {
|
|
7231
|
+
parentName: "tr",
|
|
7232
|
+
"align": null
|
|
7233
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
7234
|
+
parentName: "td"
|
|
7235
|
+
}, "component-pattern")), (0, _react2.mdx)("td", {
|
|
7236
|
+
parentName: "tr",
|
|
7237
|
+
"align": "center"
|
|
7238
|
+
}, "component name, component id, or component pattern. use component pattern to select multiple components. wrap the pattern with quotes. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/", "*", "*", ", !ui/button\". use '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'. use ", (0, _react2.mdx)("inlineCode", {
|
|
7239
|
+
parentName: "td"
|
|
7240
|
+
}, "bit pattern --help"), " to understand patterns better and ", (0, _react2.mdx)("inlineCode", {
|
|
7241
|
+
parentName: "td"
|
|
7242
|
+
}, "bit pattern <pattern>"), " to validate the pattern.")))), (0, _react2.mdx)("h3", null, "local-only unset"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7243
|
+
parentName: "p"
|
|
7244
|
+
}, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
7245
|
+
parentName: "p"
|
|
7246
|
+
}, "local-only unset <component-pattern>")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7247
|
+
parentName: "p"
|
|
7248
|
+
}, "Description"), ": remove a component from local-only"), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
7249
|
+
parentName: "table"
|
|
7250
|
+
}, (0, _react2.mdx)("tr", {
|
|
7251
|
+
parentName: "thead"
|
|
7252
|
+
}, (0, _react2.mdx)("th", {
|
|
7253
|
+
parentName: "tr",
|
|
7254
|
+
"align": null
|
|
7255
|
+
}, (0, _react2.mdx)("strong", {
|
|
7256
|
+
parentName: "th"
|
|
7257
|
+
}, "Arg")), (0, _react2.mdx)("th", {
|
|
7258
|
+
parentName: "tr",
|
|
7259
|
+
"align": "center"
|
|
7260
|
+
}, (0, _react2.mdx)("strong", {
|
|
7261
|
+
parentName: "th"
|
|
7262
|
+
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
7263
|
+
parentName: "table"
|
|
7264
|
+
}, (0, _react2.mdx)("tr", {
|
|
7265
|
+
parentName: "tbody"
|
|
7266
|
+
}, (0, _react2.mdx)("td", {
|
|
7267
|
+
parentName: "tr",
|
|
7268
|
+
"align": null
|
|
7269
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
7270
|
+
parentName: "td"
|
|
7271
|
+
}, "component-pattern")), (0, _react2.mdx)("td", {
|
|
7272
|
+
parentName: "tr",
|
|
7273
|
+
"align": "center"
|
|
7274
|
+
}, "component name, component id, or component pattern. use component pattern to select multiple components. wrap the pattern with quotes. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/", "*", "*", ", !ui/button\". use '$' prefix to filter by states/attributes, e.g. '$deprecated', '$modified' or '$env:teambit.react/react'. use ", (0, _react2.mdx)("inlineCode", {
|
|
7275
|
+
parentName: "td"
|
|
7276
|
+
}, "bit pattern --help"), " to understand patterns better and ", (0, _react2.mdx)("inlineCode", {
|
|
7277
|
+
parentName: "td"
|
|
7278
|
+
}, "bit pattern <pattern>"), " to validate the pattern.")))), (0, _react2.mdx)("h3", null, "local-only list"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7279
|
+
parentName: "p"
|
|
7280
|
+
}, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
7281
|
+
parentName: "p"
|
|
7282
|
+
}, "local-only list")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7283
|
+
parentName: "p"
|
|
7284
|
+
}, "Description"), ": list all local-only components"), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "log"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
7203
7285
|
parentName: "p"
|
|
7204
7286
|
}, "Description"), ": show components(s) version history"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
7205
7287
|
parentName: "p"
|
|
@@ -8172,7 +8254,7 @@ function MDXContent(_ref) {
|
|
|
8172
8254
|
"href": "https://github.com/sindresorhus/multimatch"
|
|
8173
8255
|
}, "https://github.com/sindresorhus/multimatch"), ")."), (0, _react2.mdx)("p", null, "to filter by a state or attribute, prefix the pattern with \"$\". e.g. '$deprecated', '$modified'.", (0, _react2.mdx)("br", {
|
|
8174
8256
|
parentName: "p"
|
|
8175
|
-
}), "\n", "list of supported states: ", "[new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified]", ".", (0, _react2.mdx)("br", {
|
|
8257
|
+
}), "\n", "list of supported states: ", "[new, modified, deprecated, deleted, snappedOnMain, softTagged, codeModified, localOnly]", ".", (0, _react2.mdx)("br", {
|
|
8176
8258
|
parentName: "p"
|
|
8177
8259
|
}), "\n", "to filter by multi-params state/attribute, separate the params with \":\", e.g. '$env:teambit.react/react'.", (0, _react2.mdx)("br", {
|
|
8178
8260
|
parentName: "p"
|
|
@@ -10879,7 +10961,20 @@ function MDXContent(_ref) {
|
|
|
10879
10961
|
}, "-b")), (0, _react2.mdx)("td", {
|
|
10880
10962
|
parentName: "tr",
|
|
10881
10963
|
"align": null
|
|
10882
|
-
}, "locally run the build pipeline (i.e. not via rippleCI) and complete the tag"))
|
|
10964
|
+
}, "locally run the build pipeline (i.e. not via rippleCI) and complete the tag")), (0, _react2.mdx)("tr", {
|
|
10965
|
+
parentName: "tbody"
|
|
10966
|
+
}, (0, _react2.mdx)("td", {
|
|
10967
|
+
parentName: "tr",
|
|
10968
|
+
"align": null
|
|
10969
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
10970
|
+
parentName: "td"
|
|
10971
|
+
}, "--include-local-only")), (0, _react2.mdx)("td", {
|
|
10972
|
+
parentName: "tr",
|
|
10973
|
+
"align": "center"
|
|
10974
|
+
}), (0, _react2.mdx)("td", {
|
|
10975
|
+
parentName: "tr",
|
|
10976
|
+
"align": null
|
|
10977
|
+
}, "include local-only components in the tag process")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "templates"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
10883
10978
|
parentName: "p"
|
|
10884
10979
|
}, "Description"), ": list available templates for \"bit create\" and \"bit new\"", (0, _react2.mdx)("br", {
|
|
10885
10980
|
parentName: "p"
|