@teambit/harmony.content.cli-reference 1.95.157 → 1.95.159
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 +35 -20
- package/cli-reference.mdx +15 -4
- package/dist/cli-reference.json +35 -20
- package/dist/cli-reference.mdx.js +15 -1
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1687418355028.js → preview-1687663176769.js} +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.159.tgz +0 -0
- package/package.json +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.157.tgz +0 -0
package/cli-reference.json
CHANGED
|
@@ -475,26 +475,6 @@
|
|
|
475
475
|
"private": true,
|
|
476
476
|
"internal": true
|
|
477
477
|
},
|
|
478
|
-
{
|
|
479
|
-
"name": "diff [values...]",
|
|
480
|
-
"alias": "",
|
|
481
|
-
"options": [
|
|
482
|
-
[
|
|
483
|
-
"v",
|
|
484
|
-
"verbose",
|
|
485
|
-
"show a more verbose output when possible"
|
|
486
|
-
],
|
|
487
|
-
[
|
|
488
|
-
"t",
|
|
489
|
-
"table",
|
|
490
|
-
"show tables instead of plain text for dependencies diff"
|
|
491
|
-
]
|
|
492
|
-
],
|
|
493
|
-
"description": "show the diff between the components' source files and config",
|
|
494
|
-
"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)",
|
|
495
|
-
"group": "development",
|
|
496
|
-
"private": false
|
|
497
|
-
},
|
|
498
478
|
{
|
|
499
479
|
"name": "login",
|
|
500
480
|
"alias": "",
|
|
@@ -2763,6 +2743,26 @@
|
|
|
2763
2743
|
"group": "development",
|
|
2764
2744
|
"private": false
|
|
2765
2745
|
},
|
|
2746
|
+
{
|
|
2747
|
+
"name": "diff [values...]",
|
|
2748
|
+
"alias": "",
|
|
2749
|
+
"options": [
|
|
2750
|
+
[
|
|
2751
|
+
"v",
|
|
2752
|
+
"verbose",
|
|
2753
|
+
"show a more verbose output when possible"
|
|
2754
|
+
],
|
|
2755
|
+
[
|
|
2756
|
+
"t",
|
|
2757
|
+
"table",
|
|
2758
|
+
"show tables instead of plain text for dependencies diff"
|
|
2759
|
+
]
|
|
2760
|
+
],
|
|
2761
|
+
"description": "show the diff between the components' source files and config",
|
|
2762
|
+
"extendedDescription": "bit diff => compare all modified components to their model version\nbit diff [ids...] => compare the specified components against their modified states\nbit diff [id] [version] => compare the specified version to used or modified files\nbit diff [id] [version] [to_version] => compare the specified version files to to_version files\nyou can use a pattern for multiple ids, such as bit diff \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
|
|
2763
|
+
"group": "development",
|
|
2764
|
+
"private": false
|
|
2765
|
+
},
|
|
2766
2766
|
{
|
|
2767
2767
|
"name": "lane [lane-name]",
|
|
2768
2768
|
"alias": "l",
|
|
@@ -3632,6 +3632,21 @@
|
|
|
3632
3632
|
"group": "development",
|
|
3633
3633
|
"private": false
|
|
3634
3634
|
},
|
|
3635
|
+
{
|
|
3636
|
+
"name": "mini-status [component-pattern]",
|
|
3637
|
+
"alias": "ms",
|
|
3638
|
+
"options": [],
|
|
3639
|
+
"description": "basic status for fast execution",
|
|
3640
|
+
"extendedDescription": "shows only modified/new components. for the full status, use \"bit status\".\nthe modified are components that their source code have changed, it doesn't check for config/aspect changes",
|
|
3641
|
+
"group": "development",
|
|
3642
|
+
"private": false,
|
|
3643
|
+
"arguments": [
|
|
3644
|
+
{
|
|
3645
|
+
"name": "component-pattern",
|
|
3646
|
+
"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"
|
|
3647
|
+
}
|
|
3648
|
+
]
|
|
3649
|
+
},
|
|
3635
3650
|
{
|
|
3636
3651
|
"name": "ws-config <sub-command>",
|
|
3637
3652
|
"alias": "workspace-config",
|
package/cli-reference.mdx
CHANGED
|
@@ -464,10 +464,10 @@ https://bit.dev/docs/config/bit-config
|
|
|
464
464
|
|
|
465
465
|
**Description**: show the diff between the components' source files and config
|
|
466
466
|
bit diff => compare all modified components to their model version
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
467
|
+
bit diff [ids...] => compare the specified components against their modified states
|
|
468
|
+
bit diff [id] [version] => compare the specified version to used or modified files
|
|
469
|
+
bit diff [id] [version] [to_version] => compare the specified version files to to_version files
|
|
470
|
+
you can use a pattern for multiple ids, such as bit diff "utils/\*". (wrap the pattern with quotes to avoid collision with shell commands)
|
|
471
471
|
|
|
472
472
|
`bit diff [values...]`
|
|
473
473
|
|
|
@@ -1063,6 +1063,17 @@ you can use a pattern for multiple ids, such as bit merge "utils/\*". (wrap the
|
|
|
1063
1063
|
|
|
1064
1064
|
---
|
|
1065
1065
|
|
|
1066
|
+
## mini-status
|
|
1067
|
+
|
|
1068
|
+
**Alias**: `ms`
|
|
1069
|
+
**Description**: basic status for fast execution
|
|
1070
|
+
shows only modified/new components. for the full status, use "bit status".
|
|
1071
|
+
the modified are components that their source code have changed, it doesn't check for config/aspect changes
|
|
1072
|
+
|
|
1073
|
+
`bit mini-status [component-pattern]`
|
|
1074
|
+
|
|
1075
|
+
---
|
|
1076
|
+
|
|
1066
1077
|
## move
|
|
1067
1078
|
|
|
1068
1079
|
**Alias**: `mv`
|
package/dist/cli-reference.json
CHANGED
|
@@ -475,26 +475,6 @@
|
|
|
475
475
|
"private": true,
|
|
476
476
|
"internal": true
|
|
477
477
|
},
|
|
478
|
-
{
|
|
479
|
-
"name": "diff [values...]",
|
|
480
|
-
"alias": "",
|
|
481
|
-
"options": [
|
|
482
|
-
[
|
|
483
|
-
"v",
|
|
484
|
-
"verbose",
|
|
485
|
-
"show a more verbose output when possible"
|
|
486
|
-
],
|
|
487
|
-
[
|
|
488
|
-
"t",
|
|
489
|
-
"table",
|
|
490
|
-
"show tables instead of plain text for dependencies diff"
|
|
491
|
-
]
|
|
492
|
-
],
|
|
493
|
-
"description": "show the diff between the components' source files and config",
|
|
494
|
-
"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)",
|
|
495
|
-
"group": "development",
|
|
496
|
-
"private": false
|
|
497
|
-
},
|
|
498
478
|
{
|
|
499
479
|
"name": "login",
|
|
500
480
|
"alias": "",
|
|
@@ -2763,6 +2743,26 @@
|
|
|
2763
2743
|
"group": "development",
|
|
2764
2744
|
"private": false
|
|
2765
2745
|
},
|
|
2746
|
+
{
|
|
2747
|
+
"name": "diff [values...]",
|
|
2748
|
+
"alias": "",
|
|
2749
|
+
"options": [
|
|
2750
|
+
[
|
|
2751
|
+
"v",
|
|
2752
|
+
"verbose",
|
|
2753
|
+
"show a more verbose output when possible"
|
|
2754
|
+
],
|
|
2755
|
+
[
|
|
2756
|
+
"t",
|
|
2757
|
+
"table",
|
|
2758
|
+
"show tables instead of plain text for dependencies diff"
|
|
2759
|
+
]
|
|
2760
|
+
],
|
|
2761
|
+
"description": "show the diff between the components' source files and config",
|
|
2762
|
+
"extendedDescription": "bit diff => compare all modified components to their model version\nbit diff [ids...] => compare the specified components against their modified states\nbit diff [id] [version] => compare the specified version to used or modified files\nbit diff [id] [version] [to_version] => compare the specified version files to to_version files\nyou can use a pattern for multiple ids, such as bit diff \"utils/*\". (wrap the pattern with quotes to avoid collision with shell commands)",
|
|
2763
|
+
"group": "development",
|
|
2764
|
+
"private": false
|
|
2765
|
+
},
|
|
2766
2766
|
{
|
|
2767
2767
|
"name": "lane [lane-name]",
|
|
2768
2768
|
"alias": "l",
|
|
@@ -3632,6 +3632,21 @@
|
|
|
3632
3632
|
"group": "development",
|
|
3633
3633
|
"private": false
|
|
3634
3634
|
},
|
|
3635
|
+
{
|
|
3636
|
+
"name": "mini-status [component-pattern]",
|
|
3637
|
+
"alias": "ms",
|
|
3638
|
+
"options": [],
|
|
3639
|
+
"description": "basic status for fast execution",
|
|
3640
|
+
"extendedDescription": "shows only modified/new components. for the full status, use \"bit status\".\nthe modified are components that their source code have changed, it doesn't check for config/aspect changes",
|
|
3641
|
+
"group": "development",
|
|
3642
|
+
"private": false,
|
|
3643
|
+
"arguments": [
|
|
3644
|
+
{
|
|
3645
|
+
"name": "component-pattern",
|
|
3646
|
+
"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"
|
|
3647
|
+
}
|
|
3648
|
+
]
|
|
3649
|
+
},
|
|
3635
3650
|
{
|
|
3636
3651
|
"name": "ws-config <sub-command>",
|
|
3637
3652
|
"alias": "workspace-config",
|
|
@@ -5094,7 +5094,21 @@ function MDXContent(_ref) {
|
|
|
5094
5094
|
}, "-m")), (0, _react2.mdx)("td", {
|
|
5095
5095
|
parentName: "tr",
|
|
5096
5096
|
"align": null
|
|
5097
|
-
}, "EXPERIMENTAL. override the default message for the auto snap")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "
|
|
5097
|
+
}, "EXPERIMENTAL. override the default message for the auto snap")))), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "mini-status"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5098
|
+
parentName: "p"
|
|
5099
|
+
}, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
5100
|
+
parentName: "p"
|
|
5101
|
+
}, "ms"), (0, _react2.mdx)("br", {
|
|
5102
|
+
parentName: "p"
|
|
5103
|
+
}), "\n", (0, _react2.mdx)("strong", {
|
|
5104
|
+
parentName: "p"
|
|
5105
|
+
}, "Description"), ": basic status for fast execution", (0, _react2.mdx)("br", {
|
|
5106
|
+
parentName: "p"
|
|
5107
|
+
}), "\n", "shows only modified/new components. for the full status, use \"bit status\".", (0, _react2.mdx)("br", {
|
|
5108
|
+
parentName: "p"
|
|
5109
|
+
}), "\n", "the modified are components that their source code have changed, it doesn't check for config/aspect changes"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
5110
|
+
parentName: "p"
|
|
5111
|
+
}, "bit mini-status [component-pattern]")), (0, _react2.mdx)("hr", null), (0, _react2.mdx)("h2", null, "move"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
5098
5112
|
parentName: "p"
|
|
5099
5113
|
}, "Alias"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
5100
5114
|
parentName: "p"
|