@teambit/harmony.content.cli-reference 1.95.221 → 1.95.224
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 +7 -7
- package/cli-reference.mdx +16 -16
- package/dist/cli-reference.docs.mdx +1 -1
- package/dist/cli-reference.json +7 -7
- package/dist/cli-reference.mdx.js +8 -8
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1693970363618.js → preview-1694081840760.js} +2 -2
- package/package.json +2 -2
package/cli-reference.docs.mdx
CHANGED
package/cli-reference.json
CHANGED
|
@@ -1889,7 +1889,7 @@
|
|
|
1889
1889
|
],
|
|
1890
1890
|
[
|
|
1891
1891
|
"",
|
|
1892
|
-
"update-existing
|
|
1892
|
+
"update-existing",
|
|
1893
1893
|
"DEPRECATED (not needed anymore, it is the default now). update existing dependencies version and types"
|
|
1894
1894
|
],
|
|
1895
1895
|
[
|
|
@@ -1899,27 +1899,27 @@
|
|
|
1899
1899
|
],
|
|
1900
1900
|
[
|
|
1901
1901
|
"",
|
|
1902
|
-
"skip-dedupe
|
|
1902
|
+
"skip-dedupe",
|
|
1903
1903
|
"do not dedupe dependencies on installation"
|
|
1904
1904
|
],
|
|
1905
1905
|
[
|
|
1906
1906
|
"",
|
|
1907
|
-
"skip-import
|
|
1907
|
+
"skip-import",
|
|
1908
1908
|
"do not import bit objects post installation"
|
|
1909
1909
|
],
|
|
1910
1910
|
[
|
|
1911
1911
|
"",
|
|
1912
|
-
"skip-compile
|
|
1912
|
+
"skip-compile",
|
|
1913
1913
|
"do not compile components"
|
|
1914
1914
|
],
|
|
1915
1915
|
[
|
|
1916
1916
|
"",
|
|
1917
|
-
"add-missing-deps
|
|
1917
|
+
"add-missing-deps",
|
|
1918
1918
|
"install all missing dependencies"
|
|
1919
1919
|
],
|
|
1920
1920
|
[
|
|
1921
1921
|
"",
|
|
1922
|
-
"add-missing-peers
|
|
1922
|
+
"add-missing-peers",
|
|
1923
1923
|
"install all missing peer dependencies"
|
|
1924
1924
|
],
|
|
1925
1925
|
[
|
|
@@ -1985,7 +1985,7 @@
|
|
|
1985
1985
|
"arguments": [
|
|
1986
1986
|
{
|
|
1987
1987
|
"name": "package-patterns...",
|
|
1988
|
-
"description": "a string list of package names, or patterns (separated by
|
|
1988
|
+
"description": "a string list of package names, or patterns (separated by spaces or commas), e.g. \"@teambit/**,@my-org/ui/**\". The patterns should be in glob format. By default, all packages are selected."
|
|
1989
1989
|
}
|
|
1990
1990
|
]
|
|
1991
1991
|
},
|
package/cli-reference.mdx
CHANGED
|
@@ -940,19 +940,19 @@ when no package is specified, all workspace dependencies are installed and all w
|
|
|
940
940
|
| ------------- | :-------------------------------------------------: |
|
|
941
941
|
| `packages...` | a list of packages to install (separated by spaces) |
|
|
942
942
|
|
|
943
|
-
| **Option**
|
|
944
|
-
|
|
|
945
|
-
| `--type [lifecycleType]`
|
|
946
|
-
| `--update`
|
|
947
|
-
| `--update-existing
|
|
948
|
-
| `--save-prefix [savePrefix]`
|
|
949
|
-
| `--skip-dedupe
|
|
950
|
-
| `--skip-import
|
|
951
|
-
| `--skip-compile
|
|
952
|
-
| `--add-missing-deps
|
|
953
|
-
| `--add-missing-peers
|
|
954
|
-
| `--recurring-install`
|
|
955
|
-
| `--no-optional [noOptional]`
|
|
943
|
+
| **Option** | **Option alias** | **Description** |
|
|
944
|
+
| ---------------------------- | :--------------: | ------------------------------------------------------------------------------------------------------ |
|
|
945
|
+
| `--type [lifecycleType]` | `-t` | "runtime" (default) or "peer" (dev is not a valid option) |
|
|
946
|
+
| `--update` | `-u` | update all dependencies to latest version according to their semver range |
|
|
947
|
+
| `--update-existing` | | DEPRECATED (not needed anymore, it is the default now). update existing dependencies version and types |
|
|
948
|
+
| `--save-prefix [savePrefix]` | | set the prefix to use when adding dependency to workspace.jsonc |
|
|
949
|
+
| `--skip-dedupe` | | do not dedupe dependencies on installation |
|
|
950
|
+
| `--skip-import` | | do not import bit objects post installation |
|
|
951
|
+
| `--skip-compile` | | do not compile components |
|
|
952
|
+
| `--add-missing-deps` | | install all missing dependencies |
|
|
953
|
+
| `--add-missing-peers` | | install all missing peer dependencies |
|
|
954
|
+
| `--recurring-install` | | automatically run install again if there are non loaded old envs in your workspace |
|
|
955
|
+
| `--no-optional [noOptional]` | | do not install optional dependencies (works with pnpm only) |
|
|
956
956
|
|
|
957
957
|
---
|
|
958
958
|
|
|
@@ -1928,9 +1928,9 @@ list components templates when inside bit-workspace (for bit-create), otherwise,
|
|
|
1928
1928
|
|
|
1929
1929
|
`bit update [package-patterns...]`
|
|
1930
1930
|
|
|
1931
|
-
| **Arg** |
|
|
1932
|
-
| --------------------- |
|
|
1933
|
-
| `package-patterns...` | a string list of package names, or patterns (separated by
|
|
1931
|
+
| **Arg** | **Description** |
|
|
1932
|
+
| --------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|
|
1933
|
+
| `package-patterns...` | a string list of package names, or patterns (separated by spaces or commas), e.g. "@teambit/**,@my-org/ui/**". The patterns should be in glob format. By default, all packages are selected. |
|
|
1934
1934
|
|
|
1935
1935
|
| **Option** | **Option alias** | **Description** |
|
|
1936
1936
|
| ---------- | :--------------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
package/dist/cli-reference.json
CHANGED
|
@@ -1889,7 +1889,7 @@
|
|
|
1889
1889
|
],
|
|
1890
1890
|
[
|
|
1891
1891
|
"",
|
|
1892
|
-
"update-existing
|
|
1892
|
+
"update-existing",
|
|
1893
1893
|
"DEPRECATED (not needed anymore, it is the default now). update existing dependencies version and types"
|
|
1894
1894
|
],
|
|
1895
1895
|
[
|
|
@@ -1899,27 +1899,27 @@
|
|
|
1899
1899
|
],
|
|
1900
1900
|
[
|
|
1901
1901
|
"",
|
|
1902
|
-
"skip-dedupe
|
|
1902
|
+
"skip-dedupe",
|
|
1903
1903
|
"do not dedupe dependencies on installation"
|
|
1904
1904
|
],
|
|
1905
1905
|
[
|
|
1906
1906
|
"",
|
|
1907
|
-
"skip-import
|
|
1907
|
+
"skip-import",
|
|
1908
1908
|
"do not import bit objects post installation"
|
|
1909
1909
|
],
|
|
1910
1910
|
[
|
|
1911
1911
|
"",
|
|
1912
|
-
"skip-compile
|
|
1912
|
+
"skip-compile",
|
|
1913
1913
|
"do not compile components"
|
|
1914
1914
|
],
|
|
1915
1915
|
[
|
|
1916
1916
|
"",
|
|
1917
|
-
"add-missing-deps
|
|
1917
|
+
"add-missing-deps",
|
|
1918
1918
|
"install all missing dependencies"
|
|
1919
1919
|
],
|
|
1920
1920
|
[
|
|
1921
1921
|
"",
|
|
1922
|
-
"add-missing-peers
|
|
1922
|
+
"add-missing-peers",
|
|
1923
1923
|
"install all missing peer dependencies"
|
|
1924
1924
|
],
|
|
1925
1925
|
[
|
|
@@ -1985,7 +1985,7 @@
|
|
|
1985
1985
|
"arguments": [
|
|
1986
1986
|
{
|
|
1987
1987
|
"name": "package-patterns...",
|
|
1988
|
-
"description": "a string list of package names, or patterns (separated by
|
|
1988
|
+
"description": "a string list of package names, or patterns (separated by spaces or commas), e.g. \"@teambit/**,@my-org/ui/**\". The patterns should be in glob format. By default, all packages are selected."
|
|
1989
1989
|
}
|
|
1990
1990
|
]
|
|
1991
1991
|
},
|
|
@@ -4560,7 +4560,7 @@ function MDXContent(_ref) {
|
|
|
4560
4560
|
"align": null
|
|
4561
4561
|
}, (0, _react2.mdx)("inlineCode", {
|
|
4562
4562
|
parentName: "td"
|
|
4563
|
-
}, "--update-existing
|
|
4563
|
+
}, "--update-existing")), (0, _react2.mdx)("td", {
|
|
4564
4564
|
parentName: "tr",
|
|
4565
4565
|
"align": "center"
|
|
4566
4566
|
}), (0, _react2.mdx)("td", {
|
|
@@ -4586,7 +4586,7 @@ function MDXContent(_ref) {
|
|
|
4586
4586
|
"align": null
|
|
4587
4587
|
}, (0, _react2.mdx)("inlineCode", {
|
|
4588
4588
|
parentName: "td"
|
|
4589
|
-
}, "--skip-dedupe
|
|
4589
|
+
}, "--skip-dedupe")), (0, _react2.mdx)("td", {
|
|
4590
4590
|
parentName: "tr",
|
|
4591
4591
|
"align": "center"
|
|
4592
4592
|
}), (0, _react2.mdx)("td", {
|
|
@@ -4599,7 +4599,7 @@ function MDXContent(_ref) {
|
|
|
4599
4599
|
"align": null
|
|
4600
4600
|
}, (0, _react2.mdx)("inlineCode", {
|
|
4601
4601
|
parentName: "td"
|
|
4602
|
-
}, "--skip-import
|
|
4602
|
+
}, "--skip-import")), (0, _react2.mdx)("td", {
|
|
4603
4603
|
parentName: "tr",
|
|
4604
4604
|
"align": "center"
|
|
4605
4605
|
}), (0, _react2.mdx)("td", {
|
|
@@ -4612,7 +4612,7 @@ function MDXContent(_ref) {
|
|
|
4612
4612
|
"align": null
|
|
4613
4613
|
}, (0, _react2.mdx)("inlineCode", {
|
|
4614
4614
|
parentName: "td"
|
|
4615
|
-
}, "--skip-compile
|
|
4615
|
+
}, "--skip-compile")), (0, _react2.mdx)("td", {
|
|
4616
4616
|
parentName: "tr",
|
|
4617
4617
|
"align": "center"
|
|
4618
4618
|
}), (0, _react2.mdx)("td", {
|
|
@@ -4625,7 +4625,7 @@ function MDXContent(_ref) {
|
|
|
4625
4625
|
"align": null
|
|
4626
4626
|
}, (0, _react2.mdx)("inlineCode", {
|
|
4627
4627
|
parentName: "td"
|
|
4628
|
-
}, "--add-missing-deps
|
|
4628
|
+
}, "--add-missing-deps")), (0, _react2.mdx)("td", {
|
|
4629
4629
|
parentName: "tr",
|
|
4630
4630
|
"align": "center"
|
|
4631
4631
|
}), (0, _react2.mdx)("td", {
|
|
@@ -4638,7 +4638,7 @@ function MDXContent(_ref) {
|
|
|
4638
4638
|
"align": null
|
|
4639
4639
|
}, (0, _react2.mdx)("inlineCode", {
|
|
4640
4640
|
parentName: "td"
|
|
4641
|
-
}, "--add-missing-peers
|
|
4641
|
+
}, "--add-missing-peers")), (0, _react2.mdx)("td", {
|
|
4642
4642
|
parentName: "tr",
|
|
4643
4643
|
"align": "center"
|
|
4644
4644
|
}), (0, _react2.mdx)("td", {
|
|
@@ -9753,9 +9753,9 @@ function MDXContent(_ref) {
|
|
|
9753
9753
|
}, "package-patterns...")), (0, _react2.mdx)("td", {
|
|
9754
9754
|
parentName: "tr",
|
|
9755
9755
|
"align": "center"
|
|
9756
|
-
}, "a string list of package names, or patterns (separated by
|
|
9756
|
+
}, "a string list of package names, or patterns (separated by spaces or commas), e.g. \"@teambit/", (0, _react2.mdx)("strong", {
|
|
9757
9757
|
parentName: "td"
|
|
9758
|
-
}, "
|
|
9758
|
+
}, ",@my-org/ui/"), "\". The patterns should be in glob format. By default, all packages are selected.")))), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
9759
9759
|
parentName: "table"
|
|
9760
9760
|
}, (0, _react2.mdx)("tr", {
|
|
9761
9761
|
parentName: "thead"
|