@teambit/harmony.content.cli-reference 1.95.32 → 1.95.33
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 +168 -52
- package/cli-reference.mdx +46 -75
- package/dist/cli-reference.json +168 -52
- package/dist/cli-reference.mdx.js +35 -136
- package/dist/cli-reference.mdx.js.map +1 -1
- package/package-tar/teambit-harmony.content.cli-reference-1.95.33.tgz +0 -0
- package/package.json +2 -2
- package/{preview-1655522887639.js → preview-1655782086029.js} +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.32.tgz +0 -0
package/cli-reference.json
CHANGED
|
@@ -472,7 +472,7 @@
|
|
|
472
472
|
[
|
|
473
473
|
"t",
|
|
474
474
|
"tests <file>/\"<file>,<file>\"",
|
|
475
|
-
"specify test files to track. use quotation marks to list files or use a glob pattern"
|
|
475
|
+
"LEGACY ONLY. specify test files to track. use quotation marks to list files or use a glob pattern"
|
|
476
476
|
],
|
|
477
477
|
[
|
|
478
478
|
"n",
|
|
@@ -482,7 +482,7 @@
|
|
|
482
482
|
[
|
|
483
483
|
"e",
|
|
484
484
|
"exclude <file>/\"<file>,<file>\"",
|
|
485
|
-
"exclude file from being tracked. use quotation marks to list files or use a glob pattern"
|
|
485
|
+
"LEGACY ONLY. exclude file from being tracked. use quotation marks to list files or use a glob pattern"
|
|
486
486
|
],
|
|
487
487
|
[
|
|
488
488
|
"o",
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
"private": true
|
|
517
517
|
},
|
|
518
518
|
{
|
|
519
|
-
"name": "untag [
|
|
519
|
+
"name": "untag [component-name] [component-version]",
|
|
520
520
|
"alias": "",
|
|
521
521
|
"options": [
|
|
522
522
|
[
|
|
@@ -535,19 +535,19 @@
|
|
|
535
535
|
"revert the tag even if used as a dependency. WARNING: components that depend on this tag will corrupt"
|
|
536
536
|
]
|
|
537
537
|
],
|
|
538
|
-
"description": "revert versions
|
|
538
|
+
"description": "revert tagged or snapped versions for component(s)",
|
|
539
539
|
"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)",
|
|
540
540
|
"group": "development",
|
|
541
541
|
"private": false
|
|
542
542
|
},
|
|
543
543
|
{
|
|
544
|
-
"name": "move <
|
|
544
|
+
"name": "move <current-component-dir> <new-component-dir>",
|
|
545
545
|
"alias": "mv",
|
|
546
546
|
"options": [
|
|
547
547
|
[
|
|
548
548
|
"c",
|
|
549
549
|
"component",
|
|
550
|
-
"move component files that are spread over multiple directories to one directory. synopsis: `move <component-id> <directory>`"
|
|
550
|
+
"LEGACY ONLY. move component files that are spread over multiple directories to one directory. synopsis: `move <component-id> <directory>`"
|
|
551
551
|
]
|
|
552
552
|
],
|
|
553
553
|
"description": "move a component to a different filesystem path",
|
|
@@ -556,7 +556,7 @@
|
|
|
556
556
|
"private": false
|
|
557
557
|
},
|
|
558
558
|
{
|
|
559
|
-
"name": "remove <ids...>",
|
|
559
|
+
"name": "remove <component-ids...>",
|
|
560
560
|
"alias": "rm",
|
|
561
561
|
"options": [
|
|
562
562
|
[
|
|
@@ -567,7 +567,7 @@
|
|
|
567
567
|
[
|
|
568
568
|
"t",
|
|
569
569
|
"track",
|
|
570
|
-
"keep tracking component (default = false)"
|
|
570
|
+
"keep tracking component in .bitmap (default = false), helps transform a tagged-component to new"
|
|
571
571
|
],
|
|
572
572
|
[
|
|
573
573
|
"d",
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
"skip confirmation"
|
|
591
591
|
]
|
|
592
592
|
],
|
|
593
|
-
"description": "remove component(s) from
|
|
593
|
+
"description": "remove component(s) from the workspace, or a remote scope",
|
|
594
594
|
"extendedDescription": "https://bit.dev/docs/components/removing-components\nyou can use a pattern for multiple ids, such as bit remove \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
|
|
595
595
|
"group": "collaborate",
|
|
596
596
|
"private": false,
|
|
@@ -721,7 +721,7 @@
|
|
|
721
721
|
"show tables instead of plain text for dependencies diff"
|
|
722
722
|
]
|
|
723
723
|
],
|
|
724
|
-
"description": "show diff between components files",
|
|
724
|
+
"description": "show the diff between the components' source files and config",
|
|
725
725
|
"extendedDescription": "bit diff => compare all modified components to their model version\n bit diff [ids...] => compare the specified components against their modified states\n bit diff [id] [version] => compare the specified version to used or modified files\n bit diff [id] [version] [to_version] => compare the specified version files to to_version files\n you can use a pattern for multiple ids, such as bit diff \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
|
|
726
726
|
"group": "development",
|
|
727
727
|
"private": false
|
|
@@ -752,11 +752,11 @@
|
|
|
752
752
|
],
|
|
753
753
|
[
|
|
754
754
|
"",
|
|
755
|
-
"machine-name <
|
|
755
|
+
"machine-name <name>",
|
|
756
756
|
"specify machine-name to pair with the token (useful for CI to avoid accidentally revoke the token)"
|
|
757
757
|
]
|
|
758
758
|
],
|
|
759
|
-
"description": "log
|
|
759
|
+
"description": "log in to Bit cloud",
|
|
760
760
|
"extendedDescription": "",
|
|
761
761
|
"group": "general",
|
|
762
762
|
"private": false,
|
|
@@ -1265,7 +1265,13 @@
|
|
|
1265
1265
|
"description": "installs workspace dependencies",
|
|
1266
1266
|
"extendedDescription": "when no package is specified, all workspace dependencies are installed and all workspace components are imported.",
|
|
1267
1267
|
"group": "development",
|
|
1268
|
-
"private": false
|
|
1268
|
+
"private": false,
|
|
1269
|
+
"arguments": [
|
|
1270
|
+
{
|
|
1271
|
+
"name": "packages...",
|
|
1272
|
+
"description": "a list of packages to install (separated by spaces)"
|
|
1273
|
+
}
|
|
1274
|
+
]
|
|
1269
1275
|
},
|
|
1270
1276
|
{
|
|
1271
1277
|
"name": "update",
|
|
@@ -1316,7 +1322,7 @@
|
|
|
1316
1322
|
"alias": "",
|
|
1317
1323
|
"options": [],
|
|
1318
1324
|
"description": "manage capsules",
|
|
1319
|
-
"extendedDescription": "a capsule is a directory
|
|
1325
|
+
"extendedDescription": "a capsule is a directory containing the component code, isolated from the workspace.\nnormally, capsules are created during the build process, the component files are copied and the packages are installed\nvia the configured package-manager. the purpose is to compile/test them in isolation to make sure they will work for\nother users after publishing/exporting them.",
|
|
1320
1326
|
"group": "capsules",
|
|
1321
1327
|
"private": false,
|
|
1322
1328
|
"commands": [
|
|
@@ -1330,13 +1336,13 @@
|
|
|
1330
1336
|
"json format"
|
|
1331
1337
|
]
|
|
1332
1338
|
],
|
|
1333
|
-
"description": "list
|
|
1339
|
+
"description": "list the capsules generated for this workspace",
|
|
1334
1340
|
"extendedDescription": "",
|
|
1335
1341
|
"group": "capsules",
|
|
1336
1342
|
"private": false
|
|
1337
1343
|
},
|
|
1338
1344
|
{
|
|
1339
|
-
"name": "create [
|
|
1345
|
+
"name": "create [component-id...]",
|
|
1340
1346
|
"alias": "",
|
|
1341
1347
|
"options": [
|
|
1342
1348
|
[
|
|
@@ -1380,7 +1386,7 @@
|
|
|
1380
1386
|
"npm, yarn or pnpm, default to npm"
|
|
1381
1387
|
]
|
|
1382
1388
|
],
|
|
1383
|
-
"description": "create capsules",
|
|
1389
|
+
"description": "create capsules for components",
|
|
1384
1390
|
"extendedDescription": "",
|
|
1385
1391
|
"group": "capsules",
|
|
1386
1392
|
"private": false
|
|
@@ -1414,7 +1420,7 @@
|
|
|
1414
1420
|
[
|
|
1415
1421
|
"v",
|
|
1416
1422
|
"verbose",
|
|
1417
|
-
"
|
|
1423
|
+
"show npm verbose output for inspection and print the stack trace"
|
|
1418
1424
|
],
|
|
1419
1425
|
[
|
|
1420
1426
|
"",
|
|
@@ -1427,13 +1433,13 @@
|
|
|
1427
1433
|
"EXPERIMENTAL. show errors/warnings for types. options are [file, project] to investigate only changed file or entire project. defaults to project"
|
|
1428
1434
|
]
|
|
1429
1435
|
],
|
|
1430
|
-
"description": "
|
|
1436
|
+
"description": "automatically recompile modified components (on save)",
|
|
1431
1437
|
"extendedDescription": "",
|
|
1432
1438
|
"group": "development",
|
|
1433
1439
|
"private": false
|
|
1434
1440
|
},
|
|
1435
1441
|
{
|
|
1436
|
-
"name": "link [
|
|
1442
|
+
"name": "link [component-names...]",
|
|
1437
1443
|
"alias": "",
|
|
1438
1444
|
"options": [
|
|
1439
1445
|
[
|
|
@@ -1462,10 +1468,16 @@
|
|
|
1462
1468
|
"skip fetch missing objects from remotes before linking"
|
|
1463
1469
|
]
|
|
1464
1470
|
],
|
|
1465
|
-
"description": "
|
|
1471
|
+
"description": "create links in the node_modules directory, to core aspects and to components in the workspace",
|
|
1466
1472
|
"extendedDescription": "https://bit.dev/docs/workspace/component-links",
|
|
1467
1473
|
"group": "development",
|
|
1468
|
-
"private": false
|
|
1474
|
+
"private": false,
|
|
1475
|
+
"arguments": [
|
|
1476
|
+
{
|
|
1477
|
+
"name": "component-names...",
|
|
1478
|
+
"description": "names or IDs of the components to link"
|
|
1479
|
+
}
|
|
1480
|
+
]
|
|
1469
1481
|
},
|
|
1470
1482
|
{
|
|
1471
1483
|
"name": "pattern <pattern>",
|
|
@@ -1640,6 +1652,16 @@
|
|
|
1640
1652
|
"extendedDescription": "",
|
|
1641
1653
|
"group": "development",
|
|
1642
1654
|
"private": false,
|
|
1655
|
+
"arguments": [
|
|
1656
|
+
{
|
|
1657
|
+
"name": "template-name",
|
|
1658
|
+
"description": "the template for generating the component \n(run 'bit templates' for a list of available templates)"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"name": "component-names...",
|
|
1662
|
+
"description": "a list of component names to generate"
|
|
1663
|
+
}
|
|
1664
|
+
],
|
|
1643
1665
|
"examples": [
|
|
1644
1666
|
{
|
|
1645
1667
|
"cmd": "bit create react ui/button",
|
|
@@ -1921,7 +1943,7 @@
|
|
|
1921
1943
|
"private": true
|
|
1922
1944
|
},
|
|
1923
1945
|
{
|
|
1924
|
-
"name": "tag [patterns...]",
|
|
1946
|
+
"name": "tag [component-patterns...]",
|
|
1925
1947
|
"alias": "t",
|
|
1926
1948
|
"options": [
|
|
1927
1949
|
[
|
|
@@ -2057,8 +2079,8 @@
|
|
|
2057
2079
|
"remoteOp": true,
|
|
2058
2080
|
"arguments": [
|
|
2059
2081
|
{
|
|
2060
|
-
"name": "patterns...",
|
|
2061
|
-
"description": "a list of patterns (separated by space). run \"bit pattern --help\" to get more data about patterns. By default, all modified are tagged."
|
|
2082
|
+
"name": "component-patterns...",
|
|
2083
|
+
"description": "a list of component names, IDs or patterns (separated by space). run \"bit pattern --help\" to get more data about patterns. By default, all modified are tagged."
|
|
2062
2084
|
}
|
|
2063
2085
|
],
|
|
2064
2086
|
"examples": [
|
|
@@ -2424,12 +2446,18 @@
|
|
|
2424
2446
|
]
|
|
2425
2447
|
],
|
|
2426
2448
|
"description": "list all aspects configured on component(s)",
|
|
2427
|
-
"extendedDescription": "
|
|
2449
|
+
"extendedDescription": "",
|
|
2428
2450
|
"group": "development",
|
|
2429
|
-
"private": false
|
|
2451
|
+
"private": false,
|
|
2452
|
+
"arguments": [
|
|
2453
|
+
{
|
|
2454
|
+
"name": "pattern",
|
|
2455
|
+
"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"
|
|
2456
|
+
}
|
|
2457
|
+
]
|
|
2430
2458
|
},
|
|
2431
2459
|
{
|
|
2432
|
-
"name": "get <component-
|
|
2460
|
+
"name": "get <component-name>",
|
|
2433
2461
|
"alias": "",
|
|
2434
2462
|
"options": [
|
|
2435
2463
|
[
|
|
@@ -2443,37 +2471,87 @@
|
|
|
2443
2471
|
"format as json"
|
|
2444
2472
|
]
|
|
2445
2473
|
],
|
|
2446
|
-
"description": "
|
|
2474
|
+
"description": "list the aspects set on a component, as well as their config and data",
|
|
2447
2475
|
"extendedDescription": "",
|
|
2448
2476
|
"group": "development",
|
|
2449
|
-
"private": false
|
|
2477
|
+
"private": false,
|
|
2478
|
+
"arguments": [
|
|
2479
|
+
{
|
|
2480
|
+
"name": "component-name",
|
|
2481
|
+
"description": "the component name or component id"
|
|
2482
|
+
}
|
|
2483
|
+
]
|
|
2450
2484
|
},
|
|
2451
2485
|
{
|
|
2452
2486
|
"name": "set <pattern> <aspect-id> [config]",
|
|
2453
2487
|
"alias": "",
|
|
2454
2488
|
"options": [],
|
|
2455
|
-
"description": "set an aspect to
|
|
2456
|
-
"extendedDescription": "
|
|
2489
|
+
"description": "set components with an aspect to extend their development tools, metadata and (possibly) artifacts",
|
|
2490
|
+
"extendedDescription": "",
|
|
2457
2491
|
"group": "development",
|
|
2458
|
-
"private": false
|
|
2492
|
+
"private": false,
|
|
2493
|
+
"arguments": [
|
|
2494
|
+
{
|
|
2495
|
+
"name": "pattern",
|
|
2496
|
+
"description": "the components to extend. use component name, component id, or component pattern. use component pattern to select multiple components. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\". wrap the pattern with quotes"
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
"name": "aspect-id",
|
|
2500
|
+
"description": "the aspect's component id"
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
"name": "config",
|
|
2504
|
+
"description": "the aspect config. enter the config as a stringified JSON (e.g. '{\"foo\":\"bar\"}' ). when no config is provided, an aspect is set with an empty config ({})."
|
|
2505
|
+
}
|
|
2506
|
+
]
|
|
2459
2507
|
},
|
|
2460
2508
|
{
|
|
2461
2509
|
"name": "unset <pattern> <aspect-id>",
|
|
2462
2510
|
"alias": "",
|
|
2463
2511
|
"options": [],
|
|
2464
2512
|
"description": "unset an aspect from component(s).",
|
|
2465
|
-
"extendedDescription": "
|
|
2513
|
+
"extendedDescription": "",
|
|
2466
2514
|
"group": "development",
|
|
2467
|
-
"private": false
|
|
2515
|
+
"private": false,
|
|
2516
|
+
"arguments": [
|
|
2517
|
+
{
|
|
2518
|
+
"name": "pattern",
|
|
2519
|
+
"description": "the components to target. use component name, component id, or component pattern. use component pattern to select multiple components. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\". wrap the pattern with quotes"
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"name": "aspect-id",
|
|
2523
|
+
"description": "the aspect's component id"
|
|
2524
|
+
}
|
|
2525
|
+
]
|
|
2468
2526
|
},
|
|
2469
2527
|
{
|
|
2470
2528
|
"name": "update <aspect-id> [pattern]",
|
|
2471
2529
|
"alias": "",
|
|
2472
2530
|
"options": [],
|
|
2473
2531
|
"description": "update a version of an aspect",
|
|
2474
|
-
"extendedDescription": "
|
|
2532
|
+
"extendedDescription": "",
|
|
2475
2533
|
"group": "development",
|
|
2476
|
-
"private": false
|
|
2534
|
+
"private": false,
|
|
2535
|
+
"arguments": [
|
|
2536
|
+
{
|
|
2537
|
+
"name": "aspect-id",
|
|
2538
|
+
"description": "the aspect's component id"
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
"name": "pattern",
|
|
2542
|
+
"description": "the components to update (defaults to all components). use component name, component id, or component pattern. use component pattern to select multiple components. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\". wrap the pattern with quotes"
|
|
2543
|
+
}
|
|
2544
|
+
],
|
|
2545
|
+
"examples": [
|
|
2546
|
+
{
|
|
2547
|
+
"cmd": "update scope.org/aspect '**/ui/**'",
|
|
2548
|
+
"description": "update \"ui\" components that use scope.org/aspect to use its latest version"
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"cmd": "bit aspect update scope.org/aspect@2.0.0",
|
|
2552
|
+
"description": "update all components that use scope.org/aspect to version 2.0.0 (of this aspect)."
|
|
2553
|
+
}
|
|
2554
|
+
]
|
|
2477
2555
|
}
|
|
2478
2556
|
]
|
|
2479
2557
|
},
|
|
@@ -2555,31 +2633,41 @@
|
|
|
2555
2633
|
"skipWorkspace": true
|
|
2556
2634
|
},
|
|
2557
2635
|
{
|
|
2558
|
-
"name": "rename <
|
|
2636
|
+
"name": "rename <current-name> <new-name>",
|
|
2559
2637
|
"alias": "",
|
|
2560
2638
|
"options": [
|
|
2561
2639
|
[
|
|
2562
2640
|
"s",
|
|
2563
|
-
"scope <
|
|
2641
|
+
"scope <scope-name>",
|
|
2564
2642
|
"default scope for the newly created component"
|
|
2565
2643
|
],
|
|
2566
2644
|
[
|
|
2567
2645
|
"p",
|
|
2568
|
-
"path <
|
|
2646
|
+
"path <relative-path>",
|
|
2569
2647
|
"relative path in the workspace. by default the path is `<scope>/<namespace>/<name>`"
|
|
2570
2648
|
],
|
|
2571
2649
|
[
|
|
2572
2650
|
"r",
|
|
2573
2651
|
"refactor",
|
|
2574
|
-
"
|
|
2652
|
+
"update the import/require statements in all dependent components (in the same workspace)"
|
|
2575
2653
|
]
|
|
2576
2654
|
],
|
|
2577
|
-
"description": "EXPERIMENTAL. rename component. if tagged/exported, create a new component and deprecate the
|
|
2578
|
-
"extendedDescription": "
|
|
2655
|
+
"description": "EXPERIMENTAL. rename component. if tagged/exported, create a new component and deprecate the original component",
|
|
2656
|
+
"extendedDescription": "",
|
|
2579
2657
|
"group": "collaborate",
|
|
2580
2658
|
"private": false,
|
|
2581
2659
|
"remoteOp": true,
|
|
2582
|
-
"skipWorkspace": true
|
|
2660
|
+
"skipWorkspace": true,
|
|
2661
|
+
"arguments": [
|
|
2662
|
+
{
|
|
2663
|
+
"name": "current-name",
|
|
2664
|
+
"description": "the current component name (without its scope name)"
|
|
2665
|
+
},
|
|
2666
|
+
{
|
|
2667
|
+
"name": "new-name",
|
|
2668
|
+
"description": "the new component name (without its scope name)"
|
|
2669
|
+
}
|
|
2670
|
+
]
|
|
2583
2671
|
},
|
|
2584
2672
|
{
|
|
2585
2673
|
"name": "fork <source-component-id> [target-component-name]",
|
|
@@ -2853,7 +2941,13 @@
|
|
|
2853
2941
|
"description": "remove lanes",
|
|
2854
2942
|
"extendedDescription": "",
|
|
2855
2943
|
"group": "ungrouped",
|
|
2856
|
-
"private": true
|
|
2944
|
+
"private": true,
|
|
2945
|
+
"arguments": [
|
|
2946
|
+
{
|
|
2947
|
+
"name": "lanes...",
|
|
2948
|
+
"description": "A list of lane names, separated by spaces"
|
|
2949
|
+
}
|
|
2950
|
+
]
|
|
2857
2951
|
},
|
|
2858
2952
|
{
|
|
2859
2953
|
"name": "change-scope <lane-name> <remote-scope-name>",
|
|
@@ -2901,7 +2995,17 @@
|
|
|
2901
2995
|
"extendedDescription": "",
|
|
2902
2996
|
"group": "ungrouped",
|
|
2903
2997
|
"private": true,
|
|
2904
|
-
"skipWorkspace": false
|
|
2998
|
+
"skipWorkspace": false,
|
|
2999
|
+
"arguments": [
|
|
3000
|
+
{
|
|
3001
|
+
"name": "component-id",
|
|
3002
|
+
"description": "the component name or id of the component to use as the lane's readme"
|
|
3003
|
+
},
|
|
3004
|
+
{
|
|
3005
|
+
"name": "lane-name",
|
|
3006
|
+
"description": "the lane to attach the readme to (defaults to the current lane)"
|
|
3007
|
+
}
|
|
3008
|
+
]
|
|
2905
3009
|
},
|
|
2906
3010
|
{
|
|
2907
3011
|
"name": "remove-readme [laneName]",
|
|
@@ -2926,7 +3030,13 @@
|
|
|
2926
3030
|
"description": "import a remote lane to your workspace",
|
|
2927
3031
|
"extendedDescription": "",
|
|
2928
3032
|
"group": "ungrouped",
|
|
2929
|
-
"private": true
|
|
3033
|
+
"private": true,
|
|
3034
|
+
"arguments": [
|
|
3035
|
+
{
|
|
3036
|
+
"name": "lane",
|
|
3037
|
+
"description": "the remote lane name"
|
|
3038
|
+
}
|
|
3039
|
+
]
|
|
2930
3040
|
}
|
|
2931
3041
|
]
|
|
2932
3042
|
},
|
|
@@ -2966,7 +3076,7 @@
|
|
|
2966
3076
|
"private": true
|
|
2967
3077
|
},
|
|
2968
3078
|
{
|
|
2969
|
-
"name": "eject <pattern>",
|
|
3079
|
+
"name": "eject <component-pattern>",
|
|
2970
3080
|
"alias": "E",
|
|
2971
3081
|
"options": [
|
|
2972
3082
|
[
|
|
@@ -2985,10 +3095,16 @@
|
|
|
2985
3095
|
"keep the component files in the workspace intact"
|
|
2986
3096
|
]
|
|
2987
3097
|
],
|
|
2988
|
-
"description": "
|
|
2989
|
-
"extendedDescription": "
|
|
3098
|
+
"description": "replace components maintained in the workspace with their corresponding packages",
|
|
3099
|
+
"extendedDescription": "",
|
|
2990
3100
|
"group": "development",
|
|
2991
|
-
"private": false
|
|
3101
|
+
"private": false,
|
|
3102
|
+
"arguments": [
|
|
3103
|
+
{
|
|
3104
|
+
"name": "component-pattern",
|
|
3105
|
+
"description": "component name, component id, or component pattern.\nuse component pattern to select multiple components. use comma to separate patterns and \"!\" to exclude. e.g. \"ui/**, !ui/button\"\nwrap the pattern with quotes"
|
|
3106
|
+
}
|
|
3107
|
+
]
|
|
2992
3108
|
},
|
|
2993
3109
|
{
|
|
2994
3110
|
"name": "resume-export <export-id> <remotes...>",
|
|
@@ -3042,7 +3158,7 @@
|
|
|
3042
3158
|
[
|
|
3043
3159
|
"",
|
|
3044
3160
|
"origin-directly",
|
|
3045
|
-
"
|
|
3161
|
+
"EXPERIMENTAL. avoid export to the central hub, instead, export directly to the original scopes. not recommended!"
|
|
3046
3162
|
],
|
|
3047
3163
|
[
|
|
3048
3164
|
"",
|