@teambit/harmony.content.cli-reference 1.95.208 → 1.95.209
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 +5 -5
- package/cli-reference.mdx +6 -5
- package/dist/cli-reference.docs.mdx +1 -1
- package/dist/cli-reference.json +5 -5
- package/dist/cli-reference.mdx.js +13 -11
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1692781025298.js → preview-1692847103766.js} +2 -2
- package/package.json +2 -2
package/cli-reference.docs.mdx
CHANGED
package/cli-reference.json
CHANGED
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
]
|
|
76
76
|
],
|
|
77
77
|
"description": "create or reinitialize an empty workspace",
|
|
78
|
-
"extendedDescription": "https://bit.dev
|
|
78
|
+
"extendedDescription": "https://https://bit.dev//workspace/creating-workspaces#initialize-a-workspace-on-an-existing-project",
|
|
79
79
|
"group": "start",
|
|
80
80
|
"private": false,
|
|
81
81
|
"skipWorkspace": true
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"alias": "",
|
|
86
86
|
"options": [],
|
|
87
87
|
"description": "global config management",
|
|
88
|
-
"extendedDescription": "https://bit.dev/
|
|
88
|
+
"extendedDescription": "https://https://bit.dev//reference/config/bit-config",
|
|
89
89
|
"group": "general",
|
|
90
90
|
"private": false,
|
|
91
91
|
"commands": [
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
]
|
|
457
457
|
],
|
|
458
458
|
"description": "revert tagged or snapped versions for component(s)",
|
|
459
|
-
"extendedDescription": "https://bit.dev
|
|
459
|
+
"extendedDescription": "https://https://bit.dev//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)",
|
|
460
460
|
"group": "development",
|
|
461
461
|
"private": true
|
|
462
462
|
},
|
|
@@ -1597,7 +1597,7 @@
|
|
|
1597
1597
|
]
|
|
1598
1598
|
],
|
|
1599
1599
|
"description": "automatically recompile modified components (on save)",
|
|
1600
|
-
"extendedDescription": "by default, the watcher doesn't use polling, to keep the CPU idle.\nin some rare cases, this could result in missing file events
|
|
1600
|
+
"extendedDescription": "by default, the watcher doesn't use polling, to keep the CPU idle.\nin some rare cases, this could result in missing file events (files are not watched).\nto fix it, try to stop other watchers on the same machine.\nalternatively, to use polling, run \"bit config set watch_use_polling true\".",
|
|
1601
1601
|
"group": "development",
|
|
1602
1602
|
"private": false
|
|
1603
1603
|
},
|
|
@@ -2623,7 +2623,7 @@
|
|
|
2623
2623
|
]
|
|
2624
2624
|
],
|
|
2625
2625
|
"description": "revert tagged or snapped versions for component(s)",
|
|
2626
|
-
"extendedDescription": "https://bit.dev
|
|
2626
|
+
"extendedDescription": "https://https://bit.dev//components/tags#undoing-a-tag",
|
|
2627
2627
|
"group": "development",
|
|
2628
2628
|
"private": false,
|
|
2629
2629
|
"arguments": [
|
package/cli-reference.mdx
CHANGED
|
@@ -371,7 +371,7 @@ The following gets removed by this command:
|
|
|
371
371
|
## config
|
|
372
372
|
|
|
373
373
|
**Description**: global config management
|
|
374
|
-
https://bit.dev/
|
|
374
|
+
https://https://bit.dev//reference/config/bit-config
|
|
375
375
|
|
|
376
376
|
`bit config`
|
|
377
377
|
|
|
@@ -904,7 +904,7 @@ bit export => export all staged snaps/tags of components to their remote scope.
|
|
|
904
904
|
## init
|
|
905
905
|
|
|
906
906
|
**Description**: create or reinitialize an empty workspace
|
|
907
|
-
https://bit.dev
|
|
907
|
+
https://https://bit.dev//workspace/creating-workspaces#initialize-a-workspace-on-an-existing-project
|
|
908
908
|
|
|
909
909
|
`bit init [path]`
|
|
910
910
|
|
|
@@ -1511,7 +1511,7 @@ to mark components as deleted on the remote scope, use "bit delete".
|
|
|
1511
1511
|
## reset
|
|
1512
1512
|
|
|
1513
1513
|
**Description**: revert tagged or snapped versions for component(s)
|
|
1514
|
-
https://bit.dev
|
|
1514
|
+
https://https://bit.dev//components/tags#undoing-a-tag
|
|
1515
1515
|
|
|
1516
1516
|
`bit reset [component-pattern]`
|
|
1517
1517
|
|
|
@@ -1931,8 +1931,9 @@ list components templates when inside bit-workspace (for bit-create), otherwise,
|
|
|
1931
1931
|
|
|
1932
1932
|
**Description**: automatically recompile modified components (on save)
|
|
1933
1933
|
by default, the watcher doesn't use polling, to keep the CPU idle.
|
|
1934
|
-
in some rare cases, this could result in missing file events
|
|
1935
|
-
|
|
1934
|
+
in some rare cases, this could result in missing file events (files are not watched).
|
|
1935
|
+
to fix it, try to stop other watchers on the same machine.
|
|
1936
|
+
alternatively, to use polling, run "bit config set watch_use_polling true".
|
|
1936
1937
|
|
|
1937
1938
|
`bit watch`
|
|
1938
1939
|
|
package/dist/cli-reference.json
CHANGED
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
]
|
|
76
76
|
],
|
|
77
77
|
"description": "create or reinitialize an empty workspace",
|
|
78
|
-
"extendedDescription": "https://bit.dev
|
|
78
|
+
"extendedDescription": "https://https://bit.dev//workspace/creating-workspaces#initialize-a-workspace-on-an-existing-project",
|
|
79
79
|
"group": "start",
|
|
80
80
|
"private": false,
|
|
81
81
|
"skipWorkspace": true
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"alias": "",
|
|
86
86
|
"options": [],
|
|
87
87
|
"description": "global config management",
|
|
88
|
-
"extendedDescription": "https://bit.dev/
|
|
88
|
+
"extendedDescription": "https://https://bit.dev//reference/config/bit-config",
|
|
89
89
|
"group": "general",
|
|
90
90
|
"private": false,
|
|
91
91
|
"commands": [
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
]
|
|
457
457
|
],
|
|
458
458
|
"description": "revert tagged or snapped versions for component(s)",
|
|
459
|
-
"extendedDescription": "https://bit.dev
|
|
459
|
+
"extendedDescription": "https://https://bit.dev//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)",
|
|
460
460
|
"group": "development",
|
|
461
461
|
"private": true
|
|
462
462
|
},
|
|
@@ -1597,7 +1597,7 @@
|
|
|
1597
1597
|
]
|
|
1598
1598
|
],
|
|
1599
1599
|
"description": "automatically recompile modified components (on save)",
|
|
1600
|
-
"extendedDescription": "by default, the watcher doesn't use polling, to keep the CPU idle.\nin some rare cases, this could result in missing file events
|
|
1600
|
+
"extendedDescription": "by default, the watcher doesn't use polling, to keep the CPU idle.\nin some rare cases, this could result in missing file events (files are not watched).\nto fix it, try to stop other watchers on the same machine.\nalternatively, to use polling, run \"bit config set watch_use_polling true\".",
|
|
1601
1601
|
"group": "development",
|
|
1602
1602
|
"private": false
|
|
1603
1603
|
},
|
|
@@ -2623,7 +2623,7 @@
|
|
|
2623
2623
|
]
|
|
2624
2624
|
],
|
|
2625
2625
|
"description": "revert tagged or snapped versions for component(s)",
|
|
2626
|
-
"extendedDescription": "https://bit.dev
|
|
2626
|
+
"extendedDescription": "https://https://bit.dev//components/tags#undoing-a-tag",
|
|
2627
2627
|
"group": "development",
|
|
2628
2628
|
"private": false,
|
|
2629
2629
|
"arguments": [
|
|
@@ -1827,10 +1827,10 @@ function MDXContent(_ref) {
|
|
|
1827
1827
|
parentName: "p"
|
|
1828
1828
|
}, "Description"), ": global config management", (0, _react2.mdx)("br", {
|
|
1829
1829
|
parentName: "p"
|
|
1830
|
-
}), "\n", (0, _react2.mdx)("a", {
|
|
1830
|
+
}), "\n", "https://", (0, _react2.mdx)("a", {
|
|
1831
1831
|
parentName: "p",
|
|
1832
|
-
"href": "https://bit.dev/
|
|
1833
|
-
}, "https://bit.dev/
|
|
1832
|
+
"href": "https://bit.dev//reference/config/bit-config"
|
|
1833
|
+
}, "https://bit.dev//reference/config/bit-config")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
1834
1834
|
parentName: "p"
|
|
1835
1835
|
}, "bit config")), (0, _react2.mdx)("h3", null, "config set"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
1836
1836
|
parentName: "p"
|
|
@@ -4227,10 +4227,10 @@ function MDXContent(_ref) {
|
|
|
4227
4227
|
parentName: "p"
|
|
4228
4228
|
}, "Description"), ": create or reinitialize an empty workspace", (0, _react2.mdx)("br", {
|
|
4229
4229
|
parentName: "p"
|
|
4230
|
-
}), "\n", (0, _react2.mdx)("a", {
|
|
4230
|
+
}), "\n", "https://", (0, _react2.mdx)("a", {
|
|
4231
4231
|
parentName: "p",
|
|
4232
|
-
"href": "https://bit.dev
|
|
4233
|
-
}, "https://bit.dev
|
|
4232
|
+
"href": "https://bit.dev//workspace/creating-workspaces#initialize-a-workspace-on-an-existing-project"
|
|
4233
|
+
}, "https://bit.dev//workspace/creating-workspaces#initialize-a-workspace-on-an-existing-project")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
4234
4234
|
parentName: "p"
|
|
4235
4235
|
}, "bit init [path]")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
4236
4236
|
parentName: "table"
|
|
@@ -7554,10 +7554,10 @@ function MDXContent(_ref) {
|
|
|
7554
7554
|
parentName: "p"
|
|
7555
7555
|
}, "Description"), ": revert tagged or snapped versions for component(s)", (0, _react2.mdx)("br", {
|
|
7556
7556
|
parentName: "p"
|
|
7557
|
-
}), "\n", (0, _react2.mdx)("a", {
|
|
7557
|
+
}), "\n", "https://", (0, _react2.mdx)("a", {
|
|
7558
7558
|
parentName: "p",
|
|
7559
|
-
"href": "https://bit.dev
|
|
7560
|
-
}, "https://bit.dev
|
|
7559
|
+
"href": "https://bit.dev//components/tags#undoing-a-tag"
|
|
7560
|
+
}, "https://bit.dev//components/tags#undoing-a-tag")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
7561
7561
|
parentName: "p"
|
|
7562
7562
|
}, "bit reset [component-pattern]")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
7563
7563
|
parentName: "table"
|
|
@@ -9705,9 +9705,11 @@ function MDXContent(_ref) {
|
|
|
9705
9705
|
parentName: "p"
|
|
9706
9706
|
}), "\n", "by default, the watcher doesn't use polling, to keep the CPU idle.", (0, _react2.mdx)("br", {
|
|
9707
9707
|
parentName: "p"
|
|
9708
|
-
}), "\n", "in some rare cases, this could result in missing file events
|
|
9708
|
+
}), "\n", "in some rare cases, this could result in missing file events (files are not watched).", (0, _react2.mdx)("br", {
|
|
9709
9709
|
parentName: "p"
|
|
9710
|
-
}), "\n", "
|
|
9710
|
+
}), "\n", "to fix it, try to stop other watchers on the same machine.", (0, _react2.mdx)("br", {
|
|
9711
|
+
parentName: "p"
|
|
9712
|
+
}), "\n", "alternatively, to use polling, run \"bit config set watch_use_polling true\"."), (0, _react2.mdx)("p", null, (0, _react2.mdx)("inlineCode", {
|
|
9711
9713
|
parentName: "p"
|
|
9712
9714
|
}, "bit watch")), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
9713
9715
|
parentName: "table"
|