@teambit/harmony.content.cli-reference 2.0.114 → 2.0.116
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 +225 -216
- package/dist/cli-reference.docs.mdx +1 -1
- package/dist/cli-reference.json +225 -216
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1703590665075.js → preview-1703698405864.js} +2 -2
- package/package.json +2 -2
package/dist/cli-reference.json
CHANGED
|
@@ -3179,6 +3179,15 @@
|
|
|
3179
3179
|
"group": "ungrouped",
|
|
3180
3180
|
"private": true
|
|
3181
3181
|
},
|
|
3182
|
+
{
|
|
3183
|
+
"name": "snap-distance <component-id> [source-snap] [target-snap]",
|
|
3184
|
+
"alias": "",
|
|
3185
|
+
"options": [],
|
|
3186
|
+
"description": "show common-snap and distance between two given snaps or between local and remote snaps",
|
|
3187
|
+
"extendedDescription": "in case source and target snaps are not provided, the command will use the local and remote heads.\nby \"head\" we mean component-head if on main, or lane-head if on lane.\nif source and target snaps are provided, the command will use them to calculate the distance.",
|
|
3188
|
+
"group": "ungrouped",
|
|
3189
|
+
"private": true
|
|
3190
|
+
},
|
|
3182
3191
|
{
|
|
3183
3192
|
"name": "checkout <to> [component-pattern]",
|
|
3184
3193
|
"alias": "U",
|
|
@@ -4355,222 +4364,6 @@
|
|
|
4355
4364
|
}
|
|
4356
4365
|
]
|
|
4357
4366
|
},
|
|
4358
|
-
{
|
|
4359
|
-
"name": "schema <pattern>",
|
|
4360
|
-
"alias": "",
|
|
4361
|
-
"options": [
|
|
4362
|
-
[
|
|
4363
|
-
"j",
|
|
4364
|
-
"json",
|
|
4365
|
-
"return the component schema in json format"
|
|
4366
|
-
]
|
|
4367
|
-
],
|
|
4368
|
-
"description": "shows the API schema of the specified component/s.",
|
|
4369
|
-
"extendedDescription": "you can use a `<pattern>` for multiple component ids, such as `bit schema \"org.scope/utils/**\"`.\nuse comma to separate patterns and '!' to exclude. e.g. 'ui/**, !ui/button'\nalways wrap the pattern with single quotes to avoid collision with shell commands.\nuse `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern.\n",
|
|
4370
|
-
"group": "development",
|
|
4371
|
-
"private": false
|
|
4372
|
-
},
|
|
4373
|
-
{
|
|
4374
|
-
"name": "check-types [component-pattern]",
|
|
4375
|
-
"alias": "",
|
|
4376
|
-
"options": [
|
|
4377
|
-
[
|
|
4378
|
-
"a",
|
|
4379
|
-
"all",
|
|
4380
|
-
"check-types for all components, not only modified and new"
|
|
4381
|
-
],
|
|
4382
|
-
[
|
|
4383
|
-
"",
|
|
4384
|
-
"strict",
|
|
4385
|
-
"in case issues found, exit with code 1"
|
|
4386
|
-
]
|
|
4387
|
-
],
|
|
4388
|
-
"description": "check typescript types",
|
|
4389
|
-
"extendedDescription": "",
|
|
4390
|
-
"group": "development",
|
|
4391
|
-
"private": false,
|
|
4392
|
-
"arguments": [
|
|
4393
|
-
{
|
|
4394
|
-
"name": "component-pattern",
|
|
4395
|
-
"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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4396
|
-
}
|
|
4397
|
-
]
|
|
4398
|
-
},
|
|
4399
|
-
{
|
|
4400
|
-
"name": "write-tsconfig",
|
|
4401
|
-
"alias": "",
|
|
4402
|
-
"options": [
|
|
4403
|
-
[
|
|
4404
|
-
"c",
|
|
4405
|
-
"clean",
|
|
4406
|
-
"delete tsconfig files from the workspace. highly recommended to run it with \"--dry-run\" first"
|
|
4407
|
-
],
|
|
4408
|
-
[
|
|
4409
|
-
"s",
|
|
4410
|
-
"silent",
|
|
4411
|
-
"do not prompt for confirmation"
|
|
4412
|
-
],
|
|
4413
|
-
[
|
|
4414
|
-
"",
|
|
4415
|
-
"no-dedupe",
|
|
4416
|
-
"write tsconfig.json inside each one of the component's dir, avoid deduping"
|
|
4417
|
-
],
|
|
4418
|
-
[
|
|
4419
|
-
"",
|
|
4420
|
-
"dry-run",
|
|
4421
|
-
"show the paths that tsconfig will be written per env"
|
|
4422
|
-
],
|
|
4423
|
-
[
|
|
4424
|
-
"",
|
|
4425
|
-
"dry-run-with-tsconfig",
|
|
4426
|
-
"use with --json flag. show the tsconfig.json content and the paths it will be written per env"
|
|
4427
|
-
],
|
|
4428
|
-
[
|
|
4429
|
-
"j",
|
|
4430
|
-
"json",
|
|
4431
|
-
"json format"
|
|
4432
|
-
]
|
|
4433
|
-
],
|
|
4434
|
-
"description": "DEPRECATED. use bit ws-config write instead",
|
|
4435
|
-
"extendedDescription": "",
|
|
4436
|
-
"group": "development",
|
|
4437
|
-
"private": true
|
|
4438
|
-
},
|
|
4439
|
-
{
|
|
4440
|
-
"name": "aspect <sub-command>",
|
|
4441
|
-
"alias": "",
|
|
4442
|
-
"options": [],
|
|
4443
|
-
"description": "manage aspects",
|
|
4444
|
-
"extendedDescription": "",
|
|
4445
|
-
"group": "development",
|
|
4446
|
-
"private": false,
|
|
4447
|
-
"commands": [
|
|
4448
|
-
{
|
|
4449
|
-
"name": "list [pattern]",
|
|
4450
|
-
"alias": "",
|
|
4451
|
-
"options": [
|
|
4452
|
-
[
|
|
4453
|
-
"d",
|
|
4454
|
-
"debug",
|
|
4455
|
-
"show the origins where the aspects were taken from"
|
|
4456
|
-
]
|
|
4457
|
-
],
|
|
4458
|
-
"description": "list all aspects configured on component(s)",
|
|
4459
|
-
"extendedDescription": "",
|
|
4460
|
-
"group": "development",
|
|
4461
|
-
"private": false,
|
|
4462
|
-
"arguments": [
|
|
4463
|
-
{
|
|
4464
|
-
"name": "pattern",
|
|
4465
|
-
"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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4466
|
-
}
|
|
4467
|
-
]
|
|
4468
|
-
},
|
|
4469
|
-
{
|
|
4470
|
-
"name": "get <component-name>",
|
|
4471
|
-
"alias": "",
|
|
4472
|
-
"options": [
|
|
4473
|
-
[
|
|
4474
|
-
"d",
|
|
4475
|
-
"debug",
|
|
4476
|
-
"show the origins where the aspects were taken from"
|
|
4477
|
-
],
|
|
4478
|
-
[
|
|
4479
|
-
"j",
|
|
4480
|
-
"json",
|
|
4481
|
-
"format as json"
|
|
4482
|
-
]
|
|
4483
|
-
],
|
|
4484
|
-
"description": "list the aspects set on a component, as well as their configs and data",
|
|
4485
|
-
"extendedDescription": "",
|
|
4486
|
-
"group": "development",
|
|
4487
|
-
"private": false,
|
|
4488
|
-
"arguments": [
|
|
4489
|
-
{
|
|
4490
|
-
"name": "component-name",
|
|
4491
|
-
"description": "the component name or component id to fetch aspects for"
|
|
4492
|
-
}
|
|
4493
|
-
]
|
|
4494
|
-
},
|
|
4495
|
-
{
|
|
4496
|
-
"name": "set <pattern> <aspect-id> [config]",
|
|
4497
|
-
"alias": "",
|
|
4498
|
-
"options": [
|
|
4499
|
-
[
|
|
4500
|
-
"m",
|
|
4501
|
-
"merge",
|
|
4502
|
-
"merge with an existing config if exits. (by default, it replaces overlapping existing configs)"
|
|
4503
|
-
]
|
|
4504
|
-
],
|
|
4505
|
-
"description": "set components with an aspect to extend their development tools, metadata and (possibly) artifacts",
|
|
4506
|
-
"extendedDescription": "",
|
|
4507
|
-
"group": "development",
|
|
4508
|
-
"private": false,
|
|
4509
|
-
"arguments": [
|
|
4510
|
-
{
|
|
4511
|
-
"name": "pattern",
|
|
4512
|
-
"description": "the components to extend. 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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4513
|
-
},
|
|
4514
|
-
{
|
|
4515
|
-
"name": "aspect-id",
|
|
4516
|
-
"description": "the aspect's component id"
|
|
4517
|
-
},
|
|
4518
|
-
{
|
|
4519
|
-
"name": "config",
|
|
4520
|
-
"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 ({})."
|
|
4521
|
-
}
|
|
4522
|
-
]
|
|
4523
|
-
},
|
|
4524
|
-
{
|
|
4525
|
-
"name": "unset <pattern> <aspect-id>",
|
|
4526
|
-
"alias": "",
|
|
4527
|
-
"options": [],
|
|
4528
|
-
"description": "unset an aspect from component(s).",
|
|
4529
|
-
"extendedDescription": "",
|
|
4530
|
-
"group": "development",
|
|
4531
|
-
"private": false,
|
|
4532
|
-
"arguments": [
|
|
4533
|
-
{
|
|
4534
|
-
"name": "pattern",
|
|
4535
|
-
"description": "the components to target. 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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4536
|
-
},
|
|
4537
|
-
{
|
|
4538
|
-
"name": "aspect-id",
|
|
4539
|
-
"description": "the aspect's component id"
|
|
4540
|
-
}
|
|
4541
|
-
]
|
|
4542
|
-
},
|
|
4543
|
-
{
|
|
4544
|
-
"name": "update <aspect-id> [pattern]",
|
|
4545
|
-
"alias": "",
|
|
4546
|
-
"options": [],
|
|
4547
|
-
"description": "update a version of an aspect for all or specified components",
|
|
4548
|
-
"extendedDescription": "",
|
|
4549
|
-
"group": "development",
|
|
4550
|
-
"private": false,
|
|
4551
|
-
"arguments": [
|
|
4552
|
-
{
|
|
4553
|
-
"name": "aspect-id",
|
|
4554
|
-
"description": "the aspect's component id. optionally, add a version (id@version), otherwise will use the latest version from the remote"
|
|
4555
|
-
},
|
|
4556
|
-
{
|
|
4557
|
-
"name": "pattern",
|
|
4558
|
-
"description": "the components to update (defaults to all components). 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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4559
|
-
}
|
|
4560
|
-
],
|
|
4561
|
-
"examples": [
|
|
4562
|
-
{
|
|
4563
|
-
"cmd": "bit aspect update scope.org/aspect '**/ui/**'",
|
|
4564
|
-
"description": "update all components with the \"ui\" namespace that use scope.org/aspect, to use its latest version"
|
|
4565
|
-
},
|
|
4566
|
-
{
|
|
4567
|
-
"cmd": "bit aspect update scope.org/aspect@2.0.0",
|
|
4568
|
-
"description": "update version of scope.org/aspect to version 2.0.0 for all components configured with that aspect."
|
|
4569
|
-
}
|
|
4570
|
-
]
|
|
4571
|
-
}
|
|
4572
|
-
]
|
|
4573
|
-
},
|
|
4574
4367
|
{
|
|
4575
4368
|
"name": "clear-cache",
|
|
4576
4369
|
"alias": "cc",
|
|
@@ -4735,6 +4528,87 @@
|
|
|
4735
4528
|
}
|
|
4736
4529
|
]
|
|
4737
4530
|
},
|
|
4531
|
+
{
|
|
4532
|
+
"name": "schema <pattern>",
|
|
4533
|
+
"alias": "",
|
|
4534
|
+
"options": [
|
|
4535
|
+
[
|
|
4536
|
+
"j",
|
|
4537
|
+
"json",
|
|
4538
|
+
"return the component schema in json format"
|
|
4539
|
+
]
|
|
4540
|
+
],
|
|
4541
|
+
"description": "shows the API schema of the specified component/s.",
|
|
4542
|
+
"extendedDescription": "you can use a `<pattern>` for multiple component ids, such as `bit schema \"org.scope/utils/**\"`.\nuse comma to separate patterns and '!' to exclude. e.g. 'ui/**, !ui/button'\nalways wrap the pattern with single quotes to avoid collision with shell commands.\nuse `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern.\n",
|
|
4543
|
+
"group": "development",
|
|
4544
|
+
"private": false
|
|
4545
|
+
},
|
|
4546
|
+
{
|
|
4547
|
+
"name": "check-types [component-pattern]",
|
|
4548
|
+
"alias": "",
|
|
4549
|
+
"options": [
|
|
4550
|
+
[
|
|
4551
|
+
"a",
|
|
4552
|
+
"all",
|
|
4553
|
+
"check-types for all components, not only modified and new"
|
|
4554
|
+
],
|
|
4555
|
+
[
|
|
4556
|
+
"",
|
|
4557
|
+
"strict",
|
|
4558
|
+
"in case issues found, exit with code 1"
|
|
4559
|
+
]
|
|
4560
|
+
],
|
|
4561
|
+
"description": "check typescript types",
|
|
4562
|
+
"extendedDescription": "",
|
|
4563
|
+
"group": "development",
|
|
4564
|
+
"private": false,
|
|
4565
|
+
"arguments": [
|
|
4566
|
+
{
|
|
4567
|
+
"name": "component-pattern",
|
|
4568
|
+
"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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4569
|
+
}
|
|
4570
|
+
]
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"name": "write-tsconfig",
|
|
4574
|
+
"alias": "",
|
|
4575
|
+
"options": [
|
|
4576
|
+
[
|
|
4577
|
+
"c",
|
|
4578
|
+
"clean",
|
|
4579
|
+
"delete tsconfig files from the workspace. highly recommended to run it with \"--dry-run\" first"
|
|
4580
|
+
],
|
|
4581
|
+
[
|
|
4582
|
+
"s",
|
|
4583
|
+
"silent",
|
|
4584
|
+
"do not prompt for confirmation"
|
|
4585
|
+
],
|
|
4586
|
+
[
|
|
4587
|
+
"",
|
|
4588
|
+
"no-dedupe",
|
|
4589
|
+
"write tsconfig.json inside each one of the component's dir, avoid deduping"
|
|
4590
|
+
],
|
|
4591
|
+
[
|
|
4592
|
+
"",
|
|
4593
|
+
"dry-run",
|
|
4594
|
+
"show the paths that tsconfig will be written per env"
|
|
4595
|
+
],
|
|
4596
|
+
[
|
|
4597
|
+
"",
|
|
4598
|
+
"dry-run-with-tsconfig",
|
|
4599
|
+
"use with --json flag. show the tsconfig.json content and the paths it will be written per env"
|
|
4600
|
+
],
|
|
4601
|
+
[
|
|
4602
|
+
"j",
|
|
4603
|
+
"json",
|
|
4604
|
+
"json format"
|
|
4605
|
+
]
|
|
4606
|
+
],
|
|
4607
|
+
"description": "DEPRECATED. use bit ws-config write instead",
|
|
4608
|
+
"extendedDescription": "",
|
|
4609
|
+
"group": "development",
|
|
4610
|
+
"private": true
|
|
4611
|
+
},
|
|
4738
4612
|
{
|
|
4739
4613
|
"name": "update-dependencies <data>",
|
|
4740
4614
|
"alias": "",
|
|
@@ -4825,6 +4699,141 @@
|
|
|
4825
4699
|
"group": "development",
|
|
4826
4700
|
"private": true
|
|
4827
4701
|
},
|
|
4702
|
+
{
|
|
4703
|
+
"name": "aspect <sub-command>",
|
|
4704
|
+
"alias": "",
|
|
4705
|
+
"options": [],
|
|
4706
|
+
"description": "manage aspects",
|
|
4707
|
+
"extendedDescription": "",
|
|
4708
|
+
"group": "development",
|
|
4709
|
+
"private": false,
|
|
4710
|
+
"commands": [
|
|
4711
|
+
{
|
|
4712
|
+
"name": "list [pattern]",
|
|
4713
|
+
"alias": "",
|
|
4714
|
+
"options": [
|
|
4715
|
+
[
|
|
4716
|
+
"d",
|
|
4717
|
+
"debug",
|
|
4718
|
+
"show the origins where the aspects were taken from"
|
|
4719
|
+
]
|
|
4720
|
+
],
|
|
4721
|
+
"description": "list all aspects configured on component(s)",
|
|
4722
|
+
"extendedDescription": "",
|
|
4723
|
+
"group": "development",
|
|
4724
|
+
"private": false,
|
|
4725
|
+
"arguments": [
|
|
4726
|
+
{
|
|
4727
|
+
"name": "pattern",
|
|
4728
|
+
"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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4729
|
+
}
|
|
4730
|
+
]
|
|
4731
|
+
},
|
|
4732
|
+
{
|
|
4733
|
+
"name": "get <component-name>",
|
|
4734
|
+
"alias": "",
|
|
4735
|
+
"options": [
|
|
4736
|
+
[
|
|
4737
|
+
"d",
|
|
4738
|
+
"debug",
|
|
4739
|
+
"show the origins where the aspects were taken from"
|
|
4740
|
+
],
|
|
4741
|
+
[
|
|
4742
|
+
"j",
|
|
4743
|
+
"json",
|
|
4744
|
+
"format as json"
|
|
4745
|
+
]
|
|
4746
|
+
],
|
|
4747
|
+
"description": "list the aspects set on a component, as well as their configs and data",
|
|
4748
|
+
"extendedDescription": "",
|
|
4749
|
+
"group": "development",
|
|
4750
|
+
"private": false,
|
|
4751
|
+
"arguments": [
|
|
4752
|
+
{
|
|
4753
|
+
"name": "component-name",
|
|
4754
|
+
"description": "the component name or component id to fetch aspects for"
|
|
4755
|
+
}
|
|
4756
|
+
]
|
|
4757
|
+
},
|
|
4758
|
+
{
|
|
4759
|
+
"name": "set <pattern> <aspect-id> [config]",
|
|
4760
|
+
"alias": "",
|
|
4761
|
+
"options": [
|
|
4762
|
+
[
|
|
4763
|
+
"m",
|
|
4764
|
+
"merge",
|
|
4765
|
+
"merge with an existing config if exits. (by default, it replaces overlapping existing configs)"
|
|
4766
|
+
]
|
|
4767
|
+
],
|
|
4768
|
+
"description": "set components with an aspect to extend their development tools, metadata and (possibly) artifacts",
|
|
4769
|
+
"extendedDescription": "",
|
|
4770
|
+
"group": "development",
|
|
4771
|
+
"private": false,
|
|
4772
|
+
"arguments": [
|
|
4773
|
+
{
|
|
4774
|
+
"name": "pattern",
|
|
4775
|
+
"description": "the components to extend. 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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4776
|
+
},
|
|
4777
|
+
{
|
|
4778
|
+
"name": "aspect-id",
|
|
4779
|
+
"description": "the aspect's component id"
|
|
4780
|
+
},
|
|
4781
|
+
{
|
|
4782
|
+
"name": "config",
|
|
4783
|
+
"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 ({})."
|
|
4784
|
+
}
|
|
4785
|
+
]
|
|
4786
|
+
},
|
|
4787
|
+
{
|
|
4788
|
+
"name": "unset <pattern> <aspect-id>",
|
|
4789
|
+
"alias": "",
|
|
4790
|
+
"options": [],
|
|
4791
|
+
"description": "unset an aspect from component(s).",
|
|
4792
|
+
"extendedDescription": "",
|
|
4793
|
+
"group": "development",
|
|
4794
|
+
"private": false,
|
|
4795
|
+
"arguments": [
|
|
4796
|
+
{
|
|
4797
|
+
"name": "pattern",
|
|
4798
|
+
"description": "the components to target. 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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4799
|
+
},
|
|
4800
|
+
{
|
|
4801
|
+
"name": "aspect-id",
|
|
4802
|
+
"description": "the aspect's component id"
|
|
4803
|
+
}
|
|
4804
|
+
]
|
|
4805
|
+
},
|
|
4806
|
+
{
|
|
4807
|
+
"name": "update <aspect-id> [pattern]",
|
|
4808
|
+
"alias": "",
|
|
4809
|
+
"options": [],
|
|
4810
|
+
"description": "update a version of an aspect for all or specified components",
|
|
4811
|
+
"extendedDescription": "",
|
|
4812
|
+
"group": "development",
|
|
4813
|
+
"private": false,
|
|
4814
|
+
"arguments": [
|
|
4815
|
+
{
|
|
4816
|
+
"name": "aspect-id",
|
|
4817
|
+
"description": "the aspect's component id. optionally, add a version (id@version), otherwise will use the latest version from the remote"
|
|
4818
|
+
},
|
|
4819
|
+
{
|
|
4820
|
+
"name": "pattern",
|
|
4821
|
+
"description": "the components to update (defaults to all components). 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 `bit pattern --help` to understand patterns better and `bit pattern <pattern>` to validate the pattern."
|
|
4822
|
+
}
|
|
4823
|
+
],
|
|
4824
|
+
"examples": [
|
|
4825
|
+
{
|
|
4826
|
+
"cmd": "bit aspect update scope.org/aspect '**/ui/**'",
|
|
4827
|
+
"description": "update all components with the \"ui\" namespace that use scope.org/aspect, to use its latest version"
|
|
4828
|
+
},
|
|
4829
|
+
{
|
|
4830
|
+
"cmd": "bit aspect update scope.org/aspect@2.0.0",
|
|
4831
|
+
"description": "update version of scope.org/aspect to version 2.0.0 for all components configured with that aspect."
|
|
4832
|
+
}
|
|
4833
|
+
]
|
|
4834
|
+
}
|
|
4835
|
+
]
|
|
4836
|
+
},
|
|
4828
4837
|
{
|
|
4829
4838
|
"name": "format [component...]",
|
|
4830
4839
|
"alias": "",
|