@teambit/harmony.content.cli-reference 1.95.96 → 1.95.98
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 +22 -6
- package/cli-reference.mdx +10 -44
- package/dist/cli-reference.json +22 -6
- package/dist/cli-reference.mdx.js +69 -169
- package/dist/cli-reference.mdx.js.map +1 -1
- package/{preview-1669433164317.js → dist/preview-1669911866429.js} +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.98.tgz +0 -0
- package/package.json +3 -5
- package/package-tar/teambit-harmony.content.cli-reference-1.95.96.tgz +0 -0
package/cli-reference.json
CHANGED
|
@@ -682,7 +682,13 @@
|
|
|
682
682
|
{
|
|
683
683
|
"name": "help",
|
|
684
684
|
"alias": "$0",
|
|
685
|
-
"options": [
|
|
685
|
+
"options": [
|
|
686
|
+
[
|
|
687
|
+
"",
|
|
688
|
+
"internal",
|
|
689
|
+
"show internal commands"
|
|
690
|
+
]
|
|
691
|
+
],
|
|
686
692
|
"description": "shows help",
|
|
687
693
|
"extendedDescription": "",
|
|
688
694
|
"group": "general",
|
|
@@ -891,7 +897,7 @@
|
|
|
891
897
|
"description": "build production assets for deployment.",
|
|
892
898
|
"extendedDescription": "",
|
|
893
899
|
"group": "development",
|
|
894
|
-
"private":
|
|
900
|
+
"private": true
|
|
895
901
|
},
|
|
896
902
|
{
|
|
897
903
|
"name": "graph [id]",
|
|
@@ -1387,7 +1393,7 @@
|
|
|
1387
1393
|
"description": "list available component-issues",
|
|
1388
1394
|
"extendedDescription": "",
|
|
1389
1395
|
"group": "development",
|
|
1390
|
-
"private":
|
|
1396
|
+
"private": true
|
|
1391
1397
|
},
|
|
1392
1398
|
{
|
|
1393
1399
|
"name": "import [component-patterns...]",
|
|
@@ -1457,6 +1463,11 @@
|
|
|
1457
1463
|
"",
|
|
1458
1464
|
"all-history",
|
|
1459
1465
|
"relevant for fetching all components objects. avoid optimizations, fetch all history versions, always"
|
|
1466
|
+
],
|
|
1467
|
+
[
|
|
1468
|
+
"",
|
|
1469
|
+
"fetch-deps",
|
|
1470
|
+
"fetch dependencies objects"
|
|
1460
1471
|
]
|
|
1461
1472
|
],
|
|
1462
1473
|
"description": "import components from their remote scopes to the local workspace",
|
|
@@ -1572,6 +1583,11 @@
|
|
|
1572
1583
|
"s",
|
|
1573
1584
|
"show-all",
|
|
1574
1585
|
"show hidden templates"
|
|
1586
|
+
],
|
|
1587
|
+
[
|
|
1588
|
+
"a",
|
|
1589
|
+
"aspect <aspect-id>",
|
|
1590
|
+
"show templates provided by the aspect-id"
|
|
1575
1591
|
]
|
|
1576
1592
|
],
|
|
1577
1593
|
"description": "list templates for \"bit create\" and \"bit new\"",
|
|
@@ -1715,7 +1731,7 @@
|
|
|
1715
1731
|
"download the files to the specified dir"
|
|
1716
1732
|
]
|
|
1717
1733
|
],
|
|
1718
|
-
"description": "
|
|
1734
|
+
"description": "list and download components artifacts",
|
|
1719
1735
|
"extendedDescription": "artifacts are created on isolated capsules during tag or snap commands.\nexample of artifacts are dists files generated by a compiler, a JUnit.xml file generated by a tester\nand a package.tgz file generated by pkg aspect.\n",
|
|
1720
1736
|
"group": "development",
|
|
1721
1737
|
"private": false,
|
|
@@ -2388,7 +2404,7 @@
|
|
|
2388
2404
|
"show not merged lanes"
|
|
2389
2405
|
]
|
|
2390
2406
|
],
|
|
2391
|
-
"description": "
|
|
2407
|
+
"description": "manage lanes",
|
|
2392
2408
|
"extendedDescription": "",
|
|
2393
2409
|
"group": "ungrouped",
|
|
2394
2410
|
"private": true,
|
|
@@ -3001,7 +3017,7 @@
|
|
|
3001
3017
|
"description": "create tar for npm publish",
|
|
3002
3018
|
"extendedDescription": "",
|
|
3003
3019
|
"group": "collaborate",
|
|
3004
|
-
"private":
|
|
3020
|
+
"private": true
|
|
3005
3021
|
},
|
|
3006
3022
|
{
|
|
3007
3023
|
"name": "publish <component-pattern>",
|
package/cli-reference.mdx
CHANGED
|
@@ -56,7 +56,7 @@ Learn the recommended workflow for tracking directories as components, in the li
|
|
|
56
56
|
## artifacts
|
|
57
57
|
|
|
58
58
|
**Workspace only**: yes
|
|
59
|
-
**Description**:
|
|
59
|
+
**Description**: list and download components artifacts
|
|
60
60
|
artifacts are created on isolated capsules during tag or snap commands.
|
|
61
61
|
example of artifacts are dists files generated by a compiler, a JUnit.xml file generated by a tester
|
|
62
62
|
and a package.tgz file generated by pkg aspect.
|
|
@@ -305,19 +305,6 @@ The following gets removed by this command:
|
|
|
305
305
|
|
|
306
306
|
---
|
|
307
307
|
|
|
308
|
-
## component-issues
|
|
309
|
-
|
|
310
|
-
**Workspace only**: yes
|
|
311
|
-
**Description**: list available component-issues
|
|
312
|
-
|
|
313
|
-
`bit component-issues`
|
|
314
|
-
|
|
315
|
-
| **Option** | **Option alias** | **Description** |
|
|
316
|
-
| ---------- | :--------------: | --------------- |
|
|
317
|
-
| `--json` | `-j` | json format |
|
|
318
|
-
|
|
319
|
-
---
|
|
320
|
-
|
|
321
308
|
## config
|
|
322
309
|
|
|
323
310
|
**Workspace only**: yes
|
|
@@ -647,6 +634,10 @@ bit export => export all staged components to their current scope, if checked ou
|
|
|
647
634
|
|
|
648
635
|
`bit help`
|
|
649
636
|
|
|
637
|
+
| **Option** | **Option alias** | **Description** |
|
|
638
|
+
| ------------ | :--------------: | ---------------------- |
|
|
639
|
+
| `--internal` | | show internal commands |
|
|
640
|
+
|
|
650
641
|
---
|
|
651
642
|
|
|
652
643
|
## import
|
|
@@ -673,6 +664,7 @@ you can use a pattern for multiple ids, such as bit import "utils/\*". (wrap the
|
|
|
673
664
|
| `--dependents` | | EXPERIMENTAL. import components found while traversing from the given ids upwards to the workspace components |
|
|
674
665
|
| `--save-in-lane` | | EXPERIMENTAL. when checked out to a lane and the component is not on the remote-lane, save it in the lane (default to save on main) |
|
|
675
666
|
| `--all-history` | | relevant for fetching all components objects. avoid optimizations, fetch all history versions, always |
|
|
667
|
+
| `--fetch-deps` | | fetch dependencies objects |
|
|
676
668
|
|
|
677
669
|
---
|
|
678
670
|
|
|
@@ -875,23 +867,6 @@ move files or directories of component(s)
|
|
|
875
867
|
|
|
876
868
|
---
|
|
877
869
|
|
|
878
|
-
## pack
|
|
879
|
-
|
|
880
|
-
**Workspace only**: yes
|
|
881
|
-
**Description**: create tar for npm publish
|
|
882
|
-
|
|
883
|
-
`bit pack <componentId> [scopePath]`
|
|
884
|
-
|
|
885
|
-
| **Option** | **Option alias** | **Description** |
|
|
886
|
-
| --------------------- | :--------------: | -------------------------------------------------- |
|
|
887
|
-
| `--out-dir <out-dir>` | `-d` | directory to put the result tar file |
|
|
888
|
-
| `--override` | `-o` | override existing pack file |
|
|
889
|
-
| `--keep` | `-k` | should keep isolated environment [default = false] |
|
|
890
|
-
| `--prefix` | `-p` | keep custom (binding) prefix |
|
|
891
|
-
| `--json` | `-j` | return the output as JSON |
|
|
892
|
-
|
|
893
|
-
---
|
|
894
|
-
|
|
895
870
|
## pattern
|
|
896
871
|
|
|
897
872
|
**Workspace only**: yes
|
|
@@ -1225,9 +1200,10 @@ list components templates when inside bit-workspace (for bit-create), otherwise,
|
|
|
1225
1200
|
|
|
1226
1201
|
`bit templates`
|
|
1227
1202
|
|
|
1228
|
-
| **Option**
|
|
1229
|
-
|
|
|
1230
|
-
| `--show-all`
|
|
1203
|
+
| **Option** | **Option alias** | **Description** |
|
|
1204
|
+
| ---------------------- | :--------------: | ---------------------------------------- |
|
|
1205
|
+
| `--show-all` | `-s` | show hidden templates |
|
|
1206
|
+
| `--aspect <aspect-id>` | `-a` | show templates provided by the aspect-id |
|
|
1231
1207
|
|
|
1232
1208
|
---
|
|
1233
1209
|
|
|
@@ -1251,16 +1227,6 @@ list components templates when inside bit-workspace (for bit-create), otherwise,
|
|
|
1251
1227
|
|
|
1252
1228
|
---
|
|
1253
1229
|
|
|
1254
|
-
## ui-build
|
|
1255
|
-
|
|
1256
|
-
**Alias**: `c`
|
|
1257
|
-
**Workspace only**: yes
|
|
1258
|
-
**Description**: build production assets for deployment.
|
|
1259
|
-
|
|
1260
|
-
`bit ui-build [type]`
|
|
1261
|
-
|
|
1262
|
-
---
|
|
1263
|
-
|
|
1264
1230
|
## undeprecate
|
|
1265
1231
|
|
|
1266
1232
|
**Workspace only**: no
|
package/dist/cli-reference.json
CHANGED
|
@@ -682,7 +682,13 @@
|
|
|
682
682
|
{
|
|
683
683
|
"name": "help",
|
|
684
684
|
"alias": "$0",
|
|
685
|
-
"options": [
|
|
685
|
+
"options": [
|
|
686
|
+
[
|
|
687
|
+
"",
|
|
688
|
+
"internal",
|
|
689
|
+
"show internal commands"
|
|
690
|
+
]
|
|
691
|
+
],
|
|
686
692
|
"description": "shows help",
|
|
687
693
|
"extendedDescription": "",
|
|
688
694
|
"group": "general",
|
|
@@ -891,7 +897,7 @@
|
|
|
891
897
|
"description": "build production assets for deployment.",
|
|
892
898
|
"extendedDescription": "",
|
|
893
899
|
"group": "development",
|
|
894
|
-
"private":
|
|
900
|
+
"private": true
|
|
895
901
|
},
|
|
896
902
|
{
|
|
897
903
|
"name": "graph [id]",
|
|
@@ -1387,7 +1393,7 @@
|
|
|
1387
1393
|
"description": "list available component-issues",
|
|
1388
1394
|
"extendedDescription": "",
|
|
1389
1395
|
"group": "development",
|
|
1390
|
-
"private":
|
|
1396
|
+
"private": true
|
|
1391
1397
|
},
|
|
1392
1398
|
{
|
|
1393
1399
|
"name": "import [component-patterns...]",
|
|
@@ -1457,6 +1463,11 @@
|
|
|
1457
1463
|
"",
|
|
1458
1464
|
"all-history",
|
|
1459
1465
|
"relevant for fetching all components objects. avoid optimizations, fetch all history versions, always"
|
|
1466
|
+
],
|
|
1467
|
+
[
|
|
1468
|
+
"",
|
|
1469
|
+
"fetch-deps",
|
|
1470
|
+
"fetch dependencies objects"
|
|
1460
1471
|
]
|
|
1461
1472
|
],
|
|
1462
1473
|
"description": "import components from their remote scopes to the local workspace",
|
|
@@ -1572,6 +1583,11 @@
|
|
|
1572
1583
|
"s",
|
|
1573
1584
|
"show-all",
|
|
1574
1585
|
"show hidden templates"
|
|
1586
|
+
],
|
|
1587
|
+
[
|
|
1588
|
+
"a",
|
|
1589
|
+
"aspect <aspect-id>",
|
|
1590
|
+
"show templates provided by the aspect-id"
|
|
1575
1591
|
]
|
|
1576
1592
|
],
|
|
1577
1593
|
"description": "list templates for \"bit create\" and \"bit new\"",
|
|
@@ -1715,7 +1731,7 @@
|
|
|
1715
1731
|
"download the files to the specified dir"
|
|
1716
1732
|
]
|
|
1717
1733
|
],
|
|
1718
|
-
"description": "
|
|
1734
|
+
"description": "list and download components artifacts",
|
|
1719
1735
|
"extendedDescription": "artifacts are created on isolated capsules during tag or snap commands.\nexample of artifacts are dists files generated by a compiler, a JUnit.xml file generated by a tester\nand a package.tgz file generated by pkg aspect.\n",
|
|
1720
1736
|
"group": "development",
|
|
1721
1737
|
"private": false,
|
|
@@ -2388,7 +2404,7 @@
|
|
|
2388
2404
|
"show not merged lanes"
|
|
2389
2405
|
]
|
|
2390
2406
|
],
|
|
2391
|
-
"description": "
|
|
2407
|
+
"description": "manage lanes",
|
|
2392
2408
|
"extendedDescription": "",
|
|
2393
2409
|
"group": "ungrouped",
|
|
2394
2410
|
"private": true,
|
|
@@ -3001,7 +3017,7 @@
|
|
|
3001
3017
|
"description": "create tar for npm publish",
|
|
3002
3018
|
"extendedDescription": "",
|
|
3003
3019
|
"group": "collaborate",
|
|
3004
|
-
"private":
|
|
3020
|
+
"private": true
|
|
3005
3021
|
},
|
|
3006
3022
|
{
|
|
3007
3023
|
"name": "publish <component-pattern>",
|
|
@@ -273,7 +273,7 @@ function MDXContent(_ref) {
|
|
|
273
273
|
parentName: "p"
|
|
274
274
|
}), "\n", (0, _react2.mdx)("strong", {
|
|
275
275
|
parentName: "p"
|
|
276
|
-
}, "Description"), ":
|
|
276
|
+
}, "Description"), ": list and download components artifacts", (0, _react2.mdx)("br", {
|
|
277
277
|
parentName: "p"
|
|
278
278
|
}), "\n", "artifacts are created on isolated capsules during tag or snap commands.", (0, _react2.mdx)("br", {
|
|
279
279
|
parentName: "p"
|
|
@@ -1423,51 +1423,7 @@ function MDXContent(_ref) {
|
|
|
1423
1423
|
parentName: "p"
|
|
1424
1424
|
}, "Description"), ": enable bash/zsh-completion shortcuts for commands and options"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
1425
1425
|
parentName: "p"
|
|
1426
|
-
}, "bit completion")), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
1427
|
-
parentName: "p"
|
|
1428
|
-
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
1429
|
-
parentName: "p"
|
|
1430
|
-
}), "\n", (0, _react2.mdx)("strong", {
|
|
1431
|
-
parentName: "p"
|
|
1432
|
-
}, "Description"), ": list available component-issues"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
1433
|
-
parentName: "p"
|
|
1434
|
-
}, "bit component-issues")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
1435
|
-
parentName: "table"
|
|
1436
|
-
}, (0, _react2.mdx)("tr", {
|
|
1437
|
-
parentName: "thead"
|
|
1438
|
-
}, (0, _react2.mdx)("th", {
|
|
1439
|
-
parentName: "tr",
|
|
1440
|
-
"align": null
|
|
1441
|
-
}, (0, _react2.mdx)("strong", {
|
|
1442
|
-
parentName: "th"
|
|
1443
|
-
}, "Option")), (0, _react2.mdx)("th", {
|
|
1444
|
-
parentName: "tr",
|
|
1445
|
-
"align": "center"
|
|
1446
|
-
}, (0, _react2.mdx)("strong", {
|
|
1447
|
-
parentName: "th"
|
|
1448
|
-
}, "Option alias")), (0, _react2.mdx)("th", {
|
|
1449
|
-
parentName: "tr",
|
|
1450
|
-
"align": null
|
|
1451
|
-
}, (0, _react2.mdx)("strong", {
|
|
1452
|
-
parentName: "th"
|
|
1453
|
-
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
1454
|
-
parentName: "table"
|
|
1455
|
-
}, (0, _react2.mdx)("tr", {
|
|
1456
|
-
parentName: "tbody"
|
|
1457
|
-
}, (0, _react2.mdx)("td", {
|
|
1458
|
-
parentName: "tr",
|
|
1459
|
-
"align": null
|
|
1460
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
1461
|
-
parentName: "td"
|
|
1462
|
-
}, "--json")), (0, _react2.mdx)("td", {
|
|
1463
|
-
parentName: "tr",
|
|
1464
|
-
"align": "center"
|
|
1465
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
1466
|
-
parentName: "td"
|
|
1467
|
-
}, "-j")), (0, _react2.mdx)("td", {
|
|
1468
|
-
parentName: "tr",
|
|
1469
|
-
"align": null
|
|
1470
|
-
}, "json format")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "config"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
1426
|
+
}, "bit completion")), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "config"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
1471
1427
|
parentName: "p"
|
|
1472
1428
|
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
1473
1429
|
parentName: "p"
|
|
@@ -2663,7 +2619,41 @@ function MDXContent(_ref) {
|
|
|
2663
2619
|
parentName: "p"
|
|
2664
2620
|
}, "Description"), ": shows help"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
2665
2621
|
parentName: "p"
|
|
2666
|
-
}, "bit help")), (0, _react2.mdx)("
|
|
2622
|
+
}, "bit help")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
2623
|
+
parentName: "table"
|
|
2624
|
+
}, (0, _react2.mdx)("tr", {
|
|
2625
|
+
parentName: "thead"
|
|
2626
|
+
}, (0, _react2.mdx)("th", {
|
|
2627
|
+
parentName: "tr",
|
|
2628
|
+
"align": null
|
|
2629
|
+
}, (0, _react2.mdx)("strong", {
|
|
2630
|
+
parentName: "th"
|
|
2631
|
+
}, "Option")), (0, _react2.mdx)("th", {
|
|
2632
|
+
parentName: "tr",
|
|
2633
|
+
"align": "center"
|
|
2634
|
+
}, (0, _react2.mdx)("strong", {
|
|
2635
|
+
parentName: "th"
|
|
2636
|
+
}, "Option alias")), (0, _react2.mdx)("th", {
|
|
2637
|
+
parentName: "tr",
|
|
2638
|
+
"align": null
|
|
2639
|
+
}, (0, _react2.mdx)("strong", {
|
|
2640
|
+
parentName: "th"
|
|
2641
|
+
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
2642
|
+
parentName: "table"
|
|
2643
|
+
}, (0, _react2.mdx)("tr", {
|
|
2644
|
+
parentName: "tbody"
|
|
2645
|
+
}, (0, _react2.mdx)("td", {
|
|
2646
|
+
parentName: "tr",
|
|
2647
|
+
"align": null
|
|
2648
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
2649
|
+
parentName: "td"
|
|
2650
|
+
}, "--internal")), (0, _react2.mdx)("td", {
|
|
2651
|
+
parentName: "tr",
|
|
2652
|
+
"align": "center"
|
|
2653
|
+
}), (0, _react2.mdx)("td", {
|
|
2654
|
+
parentName: "tr",
|
|
2655
|
+
"align": null
|
|
2656
|
+
}, "show internal commands")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "import"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
2667
2657
|
parentName: "p"
|
|
2668
2658
|
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
2669
2659
|
parentName: "p"
|
|
@@ -2882,7 +2872,20 @@ function MDXContent(_ref) {
|
|
|
2882
2872
|
}), (0, _react2.mdx)("td", {
|
|
2883
2873
|
parentName: "tr",
|
|
2884
2874
|
"align": null
|
|
2885
|
-
}, "relevant for fetching all components objects. avoid optimizations, fetch all history versions, always"))
|
|
2875
|
+
}, "relevant for fetching all components objects. avoid optimizations, fetch all history versions, always")), (0, _react2.mdx)("tr", {
|
|
2876
|
+
parentName: "tbody"
|
|
2877
|
+
}, (0, _react2.mdx)("td", {
|
|
2878
|
+
parentName: "tr",
|
|
2879
|
+
"align": null
|
|
2880
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
2881
|
+
parentName: "td"
|
|
2882
|
+
}, "--fetch-deps")), (0, _react2.mdx)("td", {
|
|
2883
|
+
parentName: "tr",
|
|
2884
|
+
"align": "center"
|
|
2885
|
+
}), (0, _react2.mdx)("td", {
|
|
2886
|
+
parentName: "tr",
|
|
2887
|
+
"align": null
|
|
2888
|
+
}, "fetch dependencies objects")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "init"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
2886
2889
|
parentName: "p"
|
|
2887
2890
|
}, "Workspace only"), ": no", (0, _react2.mdx)("br", {
|
|
2888
2891
|
parentName: "p"
|
|
@@ -4043,111 +4046,7 @@ function MDXContent(_ref) {
|
|
|
4043
4046
|
}), (0, _react2.mdx)("td", {
|
|
4044
4047
|
parentName: "tr",
|
|
4045
4048
|
"align": null
|
|
4046
|
-
}, "path to the workspace containing the template. helpful during a development of a workspace-template")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
4047
|
-
parentName: "p"
|
|
4048
|
-
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
4049
|
-
parentName: "p"
|
|
4050
|
-
}), "\n", (0, _react2.mdx)("strong", {
|
|
4051
|
-
parentName: "p"
|
|
4052
|
-
}, "Description"), ": create tar for npm publish"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
4053
|
-
parentName: "p"
|
|
4054
|
-
}, "bit pack <componentId> [scopePath]")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
4055
|
-
parentName: "table"
|
|
4056
|
-
}, (0, _react2.mdx)("tr", {
|
|
4057
|
-
parentName: "thead"
|
|
4058
|
-
}, (0, _react2.mdx)("th", {
|
|
4059
|
-
parentName: "tr",
|
|
4060
|
-
"align": null
|
|
4061
|
-
}, (0, _react2.mdx)("strong", {
|
|
4062
|
-
parentName: "th"
|
|
4063
|
-
}, "Option")), (0, _react2.mdx)("th", {
|
|
4064
|
-
parentName: "tr",
|
|
4065
|
-
"align": "center"
|
|
4066
|
-
}, (0, _react2.mdx)("strong", {
|
|
4067
|
-
parentName: "th"
|
|
4068
|
-
}, "Option alias")), (0, _react2.mdx)("th", {
|
|
4069
|
-
parentName: "tr",
|
|
4070
|
-
"align": null
|
|
4071
|
-
}, (0, _react2.mdx)("strong", {
|
|
4072
|
-
parentName: "th"
|
|
4073
|
-
}, "Description")))), (0, _react2.mdx)("tbody", {
|
|
4074
|
-
parentName: "table"
|
|
4075
|
-
}, (0, _react2.mdx)("tr", {
|
|
4076
|
-
parentName: "tbody"
|
|
4077
|
-
}, (0, _react2.mdx)("td", {
|
|
4078
|
-
parentName: "tr",
|
|
4079
|
-
"align": null
|
|
4080
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4081
|
-
parentName: "td"
|
|
4082
|
-
}, "--out-dir <out-dir>")), (0, _react2.mdx)("td", {
|
|
4083
|
-
parentName: "tr",
|
|
4084
|
-
"align": "center"
|
|
4085
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4086
|
-
parentName: "td"
|
|
4087
|
-
}, "-d")), (0, _react2.mdx)("td", {
|
|
4088
|
-
parentName: "tr",
|
|
4089
|
-
"align": null
|
|
4090
|
-
}, "directory to put the result tar file")), (0, _react2.mdx)("tr", {
|
|
4091
|
-
parentName: "tbody"
|
|
4092
|
-
}, (0, _react2.mdx)("td", {
|
|
4093
|
-
parentName: "tr",
|
|
4094
|
-
"align": null
|
|
4095
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4096
|
-
parentName: "td"
|
|
4097
|
-
}, "--override")), (0, _react2.mdx)("td", {
|
|
4098
|
-
parentName: "tr",
|
|
4099
|
-
"align": "center"
|
|
4100
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4101
|
-
parentName: "td"
|
|
4102
|
-
}, "-o")), (0, _react2.mdx)("td", {
|
|
4103
|
-
parentName: "tr",
|
|
4104
|
-
"align": null
|
|
4105
|
-
}, "override existing pack file")), (0, _react2.mdx)("tr", {
|
|
4106
|
-
parentName: "tbody"
|
|
4107
|
-
}, (0, _react2.mdx)("td", {
|
|
4108
|
-
parentName: "tr",
|
|
4109
|
-
"align": null
|
|
4110
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4111
|
-
parentName: "td"
|
|
4112
|
-
}, "--keep")), (0, _react2.mdx)("td", {
|
|
4113
|
-
parentName: "tr",
|
|
4114
|
-
"align": "center"
|
|
4115
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4116
|
-
parentName: "td"
|
|
4117
|
-
}, "-k")), (0, _react2.mdx)("td", {
|
|
4118
|
-
parentName: "tr",
|
|
4119
|
-
"align": null
|
|
4120
|
-
}, "should keep isolated environment ", "[default = false]")), (0, _react2.mdx)("tr", {
|
|
4121
|
-
parentName: "tbody"
|
|
4122
|
-
}, (0, _react2.mdx)("td", {
|
|
4123
|
-
parentName: "tr",
|
|
4124
|
-
"align": null
|
|
4125
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4126
|
-
parentName: "td"
|
|
4127
|
-
}, "--prefix")), (0, _react2.mdx)("td", {
|
|
4128
|
-
parentName: "tr",
|
|
4129
|
-
"align": "center"
|
|
4130
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4131
|
-
parentName: "td"
|
|
4132
|
-
}, "-p")), (0, _react2.mdx)("td", {
|
|
4133
|
-
parentName: "tr",
|
|
4134
|
-
"align": null
|
|
4135
|
-
}, "keep custom (binding) prefix")), (0, _react2.mdx)("tr", {
|
|
4136
|
-
parentName: "tbody"
|
|
4137
|
-
}, (0, _react2.mdx)("td", {
|
|
4138
|
-
parentName: "tr",
|
|
4139
|
-
"align": null
|
|
4140
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4141
|
-
parentName: "td"
|
|
4142
|
-
}, "--json")), (0, _react2.mdx)("td", {
|
|
4143
|
-
parentName: "tr",
|
|
4144
|
-
"align": "center"
|
|
4145
|
-
}, (0, _react2.mdx)("inlineCode", {
|
|
4146
|
-
parentName: "td"
|
|
4147
|
-
}, "-j")), (0, _react2.mdx)("td", {
|
|
4148
|
-
parentName: "tr",
|
|
4149
|
-
"align": null
|
|
4150
|
-
}, "return the output as JSON")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "pattern"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
4049
|
+
}, "path to the workspace containing the template. helpful during a development of a workspace-template")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "pattern"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
4151
4050
|
parentName: "p"
|
|
4152
4051
|
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
4153
4052
|
parentName: "p"
|
|
@@ -5628,7 +5527,22 @@ function MDXContent(_ref) {
|
|
|
5628
5527
|
}, "-s")), (0, _react2.mdx)("td", {
|
|
5629
5528
|
parentName: "tr",
|
|
5630
5529
|
"align": null
|
|
5631
|
-
}, "show hidden templates"))
|
|
5530
|
+
}, "show hidden templates")), (0, _react2.mdx)("tr", {
|
|
5531
|
+
parentName: "tbody"
|
|
5532
|
+
}, (0, _react2.mdx)("td", {
|
|
5533
|
+
parentName: "tr",
|
|
5534
|
+
"align": null
|
|
5535
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
5536
|
+
parentName: "td"
|
|
5537
|
+
}, "--aspect <aspect-id>")), (0, _react2.mdx)("td", {
|
|
5538
|
+
parentName: "tr",
|
|
5539
|
+
"align": "center"
|
|
5540
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
5541
|
+
parentName: "td"
|
|
5542
|
+
}, "-a")), (0, _react2.mdx)("td", {
|
|
5543
|
+
parentName: "tr",
|
|
5544
|
+
"align": null
|
|
5545
|
+
}, "show templates provided by the aspect-id")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "test"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5632
5546
|
parentName: "p"
|
|
5633
5547
|
}, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
5634
5548
|
parentName: "p"
|
|
@@ -5764,21 +5678,7 @@ function MDXContent(_ref) {
|
|
|
5764
5678
|
}, "-s")), (0, _react2.mdx)("td", {
|
|
5765
5679
|
parentName: "tr",
|
|
5766
5680
|
"align": null
|
|
5767
|
-
}, "DEPRECATED. (use the pattern instead, e.g. \"scopeName/", "*", "*", "\"). name of the scope to test")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
5768
|
-
parentName: "p"
|
|
5769
|
-
}, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
5770
|
-
parentName: "p"
|
|
5771
|
-
}, "c"), (0, _react2.mdx)("br", {
|
|
5772
|
-
parentName: "p"
|
|
5773
|
-
}), "\n", (0, _react2.mdx)("strong", {
|
|
5774
|
-
parentName: "p"
|
|
5775
|
-
}, "Workspace only"), ": yes", (0, _react2.mdx)("br", {
|
|
5776
|
-
parentName: "p"
|
|
5777
|
-
}), "\n", (0, _react2.mdx)("strong", {
|
|
5778
|
-
parentName: "p"
|
|
5779
|
-
}, "Description"), ": build production assets for deployment."), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
5780
|
-
parentName: "p"
|
|
5781
|
-
}, "bit ui-build [type]")), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "undeprecate"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5681
|
+
}, "DEPRECATED. (use the pattern instead, e.g. \"scopeName/", "*", "*", "\"). name of the scope to test")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "undeprecate"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5782
5682
|
parentName: "p"
|
|
5783
5683
|
}, "Workspace only"), ": no", (0, _react2.mdx)("br", {
|
|
5784
5684
|
parentName: "p"
|