@teambit/harmony.content.cli-reference 2.0.23 → 2.0.24
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
CHANGED
|
@@ -2181,6 +2181,37 @@
|
|
|
2181
2181
|
"group": "ungrouped",
|
|
2182
2182
|
"private": true
|
|
2183
2183
|
},
|
|
2184
|
+
{
|
|
2185
|
+
"name": "eject <component-pattern>",
|
|
2186
|
+
"alias": "E",
|
|
2187
|
+
"options": [
|
|
2188
|
+
[
|
|
2189
|
+
"f",
|
|
2190
|
+
"force",
|
|
2191
|
+
"ignore local changes/versions. eject component/s even when they are staged or modified. Note: unexported tags/snaps will be lost"
|
|
2192
|
+
],
|
|
2193
|
+
[
|
|
2194
|
+
"j",
|
|
2195
|
+
"json",
|
|
2196
|
+
"print the results in JSON format"
|
|
2197
|
+
],
|
|
2198
|
+
[
|
|
2199
|
+
"",
|
|
2200
|
+
"keep-files",
|
|
2201
|
+
"keep the component files in the workspace intact"
|
|
2202
|
+
]
|
|
2203
|
+
],
|
|
2204
|
+
"description": "remove component from the workspace and install it instead as a regular npm package.",
|
|
2205
|
+
"extendedDescription": "By default the component files will be removed from the workspace",
|
|
2206
|
+
"group": "development",
|
|
2207
|
+
"private": false,
|
|
2208
|
+
"arguments": [
|
|
2209
|
+
{
|
|
2210
|
+
"name": "component-pattern",
|
|
2211
|
+
"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"
|
|
2212
|
+
}
|
|
2213
|
+
]
|
|
2214
|
+
},
|
|
2184
2215
|
{
|
|
2185
2216
|
"name": "remove <component-pattern>",
|
|
2186
2217
|
"alias": "rm",
|
|
@@ -3065,6 +3096,11 @@
|
|
|
3065
3096
|
"one-line",
|
|
3066
3097
|
"show each log entry in one line"
|
|
3067
3098
|
],
|
|
3099
|
+
[
|
|
3100
|
+
"f",
|
|
3101
|
+
"full-hash",
|
|
3102
|
+
"show full hash of the snap (default to the first 9 characters for --one-line/--parents flags)"
|
|
3103
|
+
],
|
|
3068
3104
|
[
|
|
3069
3105
|
"j",
|
|
3070
3106
|
"json",
|
|
@@ -4542,37 +4578,6 @@
|
|
|
4542
4578
|
}
|
|
4543
4579
|
]
|
|
4544
4580
|
},
|
|
4545
|
-
{
|
|
4546
|
-
"name": "eject <component-pattern>",
|
|
4547
|
-
"alias": "E",
|
|
4548
|
-
"options": [
|
|
4549
|
-
[
|
|
4550
|
-
"f",
|
|
4551
|
-
"force",
|
|
4552
|
-
"ignore local changes/versions. eject component/s even when they are staged or modified. Note: unexported tags/snaps will be lost"
|
|
4553
|
-
],
|
|
4554
|
-
[
|
|
4555
|
-
"j",
|
|
4556
|
-
"json",
|
|
4557
|
-
"print the results in JSON format"
|
|
4558
|
-
],
|
|
4559
|
-
[
|
|
4560
|
-
"",
|
|
4561
|
-
"keep-files",
|
|
4562
|
-
"keep the component files in the workspace intact"
|
|
4563
|
-
]
|
|
4564
|
-
],
|
|
4565
|
-
"description": "remove component from the workspace and install it instead as a regular npm package.",
|
|
4566
|
-
"extendedDescription": "By default the component files will be removed from the workspace",
|
|
4567
|
-
"group": "development",
|
|
4568
|
-
"private": false,
|
|
4569
|
-
"arguments": [
|
|
4570
|
-
{
|
|
4571
|
-
"name": "component-pattern",
|
|
4572
|
-
"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"
|
|
4573
|
-
}
|
|
4574
|
-
]
|
|
4575
|
-
},
|
|
4576
4581
|
{
|
|
4577
4582
|
"name": "update-dependencies <data>",
|
|
4578
4583
|
"alias": "",
|
package/cli-reference.mdx
CHANGED
|
@@ -1277,12 +1277,13 @@ also, checkout the workspace components according to the restored lane state
|
|
|
1277
1277
|
| ------- | :----------------------------: |
|
|
1278
1278
|
| `id` | component-id or component-name |
|
|
1279
1279
|
|
|
1280
|
-
| **Option**
|
|
1281
|
-
|
|
|
1282
|
-
| `--remote`
|
|
1283
|
-
| `--parents`
|
|
1284
|
-
| `--one-line`
|
|
1285
|
-
| `--
|
|
1280
|
+
| **Option** | **Option alias** | **Description** |
|
|
1281
|
+
| ------------- | :--------------: | --------------------------------------------------------------------------------------------- |
|
|
1282
|
+
| `--remote` | `-r` | show log of a remote component |
|
|
1283
|
+
| `--parents` | | show parents and lanes data |
|
|
1284
|
+
| `--one-line` | `-o` | show each log entry in one line |
|
|
1285
|
+
| `--full-hash` | `-f` | show full hash of the snap (default to the first 9 characters for --one-line/--parents flags) |
|
|
1286
|
+
| `--json` | `-j` | json format |
|
|
1286
1287
|
|
|
1287
1288
|
---
|
|
1288
1289
|
|
package/dist/cli-reference.json
CHANGED
|
@@ -2181,6 +2181,37 @@
|
|
|
2181
2181
|
"group": "ungrouped",
|
|
2182
2182
|
"private": true
|
|
2183
2183
|
},
|
|
2184
|
+
{
|
|
2185
|
+
"name": "eject <component-pattern>",
|
|
2186
|
+
"alias": "E",
|
|
2187
|
+
"options": [
|
|
2188
|
+
[
|
|
2189
|
+
"f",
|
|
2190
|
+
"force",
|
|
2191
|
+
"ignore local changes/versions. eject component/s even when they are staged or modified. Note: unexported tags/snaps will be lost"
|
|
2192
|
+
],
|
|
2193
|
+
[
|
|
2194
|
+
"j",
|
|
2195
|
+
"json",
|
|
2196
|
+
"print the results in JSON format"
|
|
2197
|
+
],
|
|
2198
|
+
[
|
|
2199
|
+
"",
|
|
2200
|
+
"keep-files",
|
|
2201
|
+
"keep the component files in the workspace intact"
|
|
2202
|
+
]
|
|
2203
|
+
],
|
|
2204
|
+
"description": "remove component from the workspace and install it instead as a regular npm package.",
|
|
2205
|
+
"extendedDescription": "By default the component files will be removed from the workspace",
|
|
2206
|
+
"group": "development",
|
|
2207
|
+
"private": false,
|
|
2208
|
+
"arguments": [
|
|
2209
|
+
{
|
|
2210
|
+
"name": "component-pattern",
|
|
2211
|
+
"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"
|
|
2212
|
+
}
|
|
2213
|
+
]
|
|
2214
|
+
},
|
|
2184
2215
|
{
|
|
2185
2216
|
"name": "remove <component-pattern>",
|
|
2186
2217
|
"alias": "rm",
|
|
@@ -3065,6 +3096,11 @@
|
|
|
3065
3096
|
"one-line",
|
|
3066
3097
|
"show each log entry in one line"
|
|
3067
3098
|
],
|
|
3099
|
+
[
|
|
3100
|
+
"f",
|
|
3101
|
+
"full-hash",
|
|
3102
|
+
"show full hash of the snap (default to the first 9 characters for --one-line/--parents flags)"
|
|
3103
|
+
],
|
|
3068
3104
|
[
|
|
3069
3105
|
"j",
|
|
3070
3106
|
"json",
|
|
@@ -4542,37 +4578,6 @@
|
|
|
4542
4578
|
}
|
|
4543
4579
|
]
|
|
4544
4580
|
},
|
|
4545
|
-
{
|
|
4546
|
-
"name": "eject <component-pattern>",
|
|
4547
|
-
"alias": "E",
|
|
4548
|
-
"options": [
|
|
4549
|
-
[
|
|
4550
|
-
"f",
|
|
4551
|
-
"force",
|
|
4552
|
-
"ignore local changes/versions. eject component/s even when they are staged or modified. Note: unexported tags/snaps will be lost"
|
|
4553
|
-
],
|
|
4554
|
-
[
|
|
4555
|
-
"j",
|
|
4556
|
-
"json",
|
|
4557
|
-
"print the results in JSON format"
|
|
4558
|
-
],
|
|
4559
|
-
[
|
|
4560
|
-
"",
|
|
4561
|
-
"keep-files",
|
|
4562
|
-
"keep the component files in the workspace intact"
|
|
4563
|
-
]
|
|
4564
|
-
],
|
|
4565
|
-
"description": "remove component from the workspace and install it instead as a regular npm package.",
|
|
4566
|
-
"extendedDescription": "By default the component files will be removed from the workspace",
|
|
4567
|
-
"group": "development",
|
|
4568
|
-
"private": false,
|
|
4569
|
-
"arguments": [
|
|
4570
|
-
{
|
|
4571
|
-
"name": "component-pattern",
|
|
4572
|
-
"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"
|
|
4573
|
-
}
|
|
4574
|
-
]
|
|
4575
|
-
},
|
|
4576
4581
|
{
|
|
4577
4582
|
"name": "update-dependencies <data>",
|
|
4578
4583
|
"alias": "",
|
|
@@ -6547,6 +6547,21 @@ function MDXContent(_ref) {
|
|
|
6547
6547
|
"align": null
|
|
6548
6548
|
}, (0, _react2.mdx)("inlineCode", {
|
|
6549
6549
|
parentName: "td"
|
|
6550
|
+
}, "--full-hash")), (0, _react2.mdx)("td", {
|
|
6551
|
+
parentName: "tr",
|
|
6552
|
+
"align": "center"
|
|
6553
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
6554
|
+
parentName: "td"
|
|
6555
|
+
}, "-f")), (0, _react2.mdx)("td", {
|
|
6556
|
+
parentName: "tr",
|
|
6557
|
+
"align": null
|
|
6558
|
+
}, "show full hash of the snap (default to the first 9 characters for --one-line/--parents flags)")), (0, _react2.mdx)("tr", {
|
|
6559
|
+
parentName: "tbody"
|
|
6560
|
+
}, (0, _react2.mdx)("td", {
|
|
6561
|
+
parentName: "tr",
|
|
6562
|
+
"align": null
|
|
6563
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
6564
|
+
parentName: "td"
|
|
6550
6565
|
}, "--json")), (0, _react2.mdx)("td", {
|
|
6551
6566
|
parentName: "tr",
|
|
6552
6567
|
"align": "center"
|