@teambit/harmony.content.cli-reference 1.95.145 → 1.95.147
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 +101 -69
- package/cli-reference.mdx +6 -4
- package/dist/cli-reference.json +101 -69
- package/dist/cli-reference.mdx.js +32 -2
- package/dist/cli-reference.mdx.js.map +1 -1
- package/dist/{preview-1684121327240.js → preview-1684294998398.js} +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.147.tgz +0 -0
- package/package.json +2 -2
- package/package-tar/teambit-harmony.content.cli-reference-1.95.145.tgz +0 -0
package/cli-reference.json
CHANGED
|
@@ -1976,71 +1976,6 @@
|
|
|
1976
1976
|
"group": "ungrouped",
|
|
1977
1977
|
"private": true
|
|
1978
1978
|
},
|
|
1979
|
-
{
|
|
1980
|
-
"name": "checkout <to> [component-pattern]",
|
|
1981
|
-
"alias": "U",
|
|
1982
|
-
"options": [
|
|
1983
|
-
[
|
|
1984
|
-
"i",
|
|
1985
|
-
"interactive-merge",
|
|
1986
|
-
"when a component is modified and the merge process found conflicts, display options to resolve them"
|
|
1987
|
-
],
|
|
1988
|
-
[
|
|
1989
|
-
"o",
|
|
1990
|
-
"ours",
|
|
1991
|
-
"in case of a conflict, override the used version with the current modification"
|
|
1992
|
-
],
|
|
1993
|
-
[
|
|
1994
|
-
"t",
|
|
1995
|
-
"theirs",
|
|
1996
|
-
"in case of a conflict, override the current modification with the specified version"
|
|
1997
|
-
],
|
|
1998
|
-
[
|
|
1999
|
-
"m",
|
|
2000
|
-
"manual",
|
|
2001
|
-
"in case of a conflict, leave the files with a conflict state to resolve them manually later"
|
|
2002
|
-
],
|
|
2003
|
-
[
|
|
2004
|
-
"r",
|
|
2005
|
-
"reset",
|
|
2006
|
-
"revert changes that were not snapped/tagged"
|
|
2007
|
-
],
|
|
2008
|
-
[
|
|
2009
|
-
"a",
|
|
2010
|
-
"all",
|
|
2011
|
-
"all components"
|
|
2012
|
-
],
|
|
2013
|
-
[
|
|
2014
|
-
"e",
|
|
2015
|
-
"workspace-only",
|
|
2016
|
-
"when on a lane, avoid introducing new components from the remote lane that do not exist locally"
|
|
2017
|
-
],
|
|
2018
|
-
[
|
|
2019
|
-
"v",
|
|
2020
|
-
"verbose",
|
|
2021
|
-
"showing verbose output for inspection"
|
|
2022
|
-
],
|
|
2023
|
-
[
|
|
2024
|
-
"x",
|
|
2025
|
-
"skip-dependency-installation",
|
|
2026
|
-
"do not install packages of the imported components"
|
|
2027
|
-
]
|
|
2028
|
-
],
|
|
2029
|
-
"description": "switch between component versions or remove local changes",
|
|
2030
|
-
"extendedDescription": "\n `bit checkout <version> [component-pattern]` => checkout the specified ids (or all components when --all is used) to the specified version\n `bit checkout head [component-pattern]` => checkout to the last snap/tag, omit [component-pattern] to checkout head for all\n `bit checkout latest [component-pattern]` => checkout to the latest satisfying semver tag, omit [component-pattern] to checkout latest for all\n `bit checkout reset [component-pattern]` => remove local modifications from the specified ids (or all components when --all is used)",
|
|
2031
|
-
"group": "development",
|
|
2032
|
-
"private": false,
|
|
2033
|
-
"arguments": [
|
|
2034
|
-
{
|
|
2035
|
-
"name": "to",
|
|
2036
|
-
"description": "permitted values: [head, latest, reset, specific-version]. 'head' - last snap/tag. 'latest' - semver latest tag. 'reset' - removes local changes"
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
"name": "component-pattern",
|
|
2040
|
-
"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"
|
|
2041
|
-
}
|
|
2042
|
-
]
|
|
2043
|
-
},
|
|
2044
1979
|
{
|
|
2045
1980
|
"name": "remove <component-pattern>",
|
|
2046
1981
|
"alias": "rm",
|
|
@@ -2119,6 +2054,71 @@
|
|
|
2119
2054
|
"group": "collaborate",
|
|
2120
2055
|
"private": false
|
|
2121
2056
|
},
|
|
2057
|
+
{
|
|
2058
|
+
"name": "checkout <to> [component-pattern]",
|
|
2059
|
+
"alias": "U",
|
|
2060
|
+
"options": [
|
|
2061
|
+
[
|
|
2062
|
+
"i",
|
|
2063
|
+
"interactive-merge",
|
|
2064
|
+
"when a component is modified and the merge process found conflicts, display options to resolve them"
|
|
2065
|
+
],
|
|
2066
|
+
[
|
|
2067
|
+
"o",
|
|
2068
|
+
"ours",
|
|
2069
|
+
"in case of a conflict, override the used version with the current modification"
|
|
2070
|
+
],
|
|
2071
|
+
[
|
|
2072
|
+
"t",
|
|
2073
|
+
"theirs",
|
|
2074
|
+
"in case of a conflict, override the current modification with the specified version"
|
|
2075
|
+
],
|
|
2076
|
+
[
|
|
2077
|
+
"m",
|
|
2078
|
+
"manual",
|
|
2079
|
+
"in case of a conflict, leave the files with a conflict state to resolve them manually later"
|
|
2080
|
+
],
|
|
2081
|
+
[
|
|
2082
|
+
"r",
|
|
2083
|
+
"reset",
|
|
2084
|
+
"revert changes that were not snapped/tagged"
|
|
2085
|
+
],
|
|
2086
|
+
[
|
|
2087
|
+
"a",
|
|
2088
|
+
"all",
|
|
2089
|
+
"all components"
|
|
2090
|
+
],
|
|
2091
|
+
[
|
|
2092
|
+
"e",
|
|
2093
|
+
"workspace-only",
|
|
2094
|
+
"when on a lane, avoid introducing new components from the remote lane that do not exist locally"
|
|
2095
|
+
],
|
|
2096
|
+
[
|
|
2097
|
+
"v",
|
|
2098
|
+
"verbose",
|
|
2099
|
+
"showing verbose output for inspection"
|
|
2100
|
+
],
|
|
2101
|
+
[
|
|
2102
|
+
"x",
|
|
2103
|
+
"skip-dependency-installation",
|
|
2104
|
+
"do not install packages of the imported components"
|
|
2105
|
+
]
|
|
2106
|
+
],
|
|
2107
|
+
"description": "switch between component versions or remove local changes",
|
|
2108
|
+
"extendedDescription": "\n `bit checkout <version> [component-pattern]` => checkout the specified ids (or all components when --all is used) to the specified version\n `bit checkout head [component-pattern]` => checkout to the last snap/tag, omit [component-pattern] to checkout head for all\n `bit checkout latest [component-pattern]` => checkout to the latest satisfying semver tag, omit [component-pattern] to checkout latest for all\n `bit checkout reset [component-pattern]` => remove local modifications from the specified ids (or all components when --all is used)",
|
|
2109
|
+
"group": "development",
|
|
2110
|
+
"private": false,
|
|
2111
|
+
"arguments": [
|
|
2112
|
+
{
|
|
2113
|
+
"name": "to",
|
|
2114
|
+
"description": "permitted values: [head, latest, reset, specific-version]. 'head' - last snap/tag. 'latest' - semver latest tag. 'reset' - removes local changes"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"name": "component-pattern",
|
|
2118
|
+
"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"
|
|
2119
|
+
}
|
|
2120
|
+
]
|
|
2121
|
+
},
|
|
2122
2122
|
{
|
|
2123
2123
|
"name": "resume-export <export-id> <remotes...>",
|
|
2124
2124
|
"alias": "",
|
|
@@ -2194,6 +2194,11 @@
|
|
|
2194
2194
|
"j",
|
|
2195
2195
|
"json",
|
|
2196
2196
|
"return the insights in json format"
|
|
2197
|
+
],
|
|
2198
|
+
[
|
|
2199
|
+
"",
|
|
2200
|
+
"include-deps",
|
|
2201
|
+
"include component dependencies that are not in this workspace"
|
|
2197
2202
|
]
|
|
2198
2203
|
],
|
|
2199
2204
|
"description": "Insights on component graph",
|
|
@@ -2746,7 +2751,7 @@
|
|
|
2746
2751
|
"skipWorkspace": true
|
|
2747
2752
|
},
|
|
2748
2753
|
{
|
|
2749
|
-
"name": "switch <lane>",
|
|
2754
|
+
"name": "switch <lane> [pattern]",
|
|
2750
2755
|
"alias": "",
|
|
2751
2756
|
"options": [
|
|
2752
2757
|
[
|
|
@@ -2769,6 +2774,11 @@
|
|
|
2769
2774
|
"skip-dependency-installation",
|
|
2770
2775
|
"do not install packages of the imported components"
|
|
2771
2776
|
],
|
|
2777
|
+
[
|
|
2778
|
+
"p",
|
|
2779
|
+
"pattern <component-pattern>",
|
|
2780
|
+
"EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty"
|
|
2781
|
+
],
|
|
2772
2782
|
[
|
|
2773
2783
|
"j",
|
|
2774
2784
|
"json",
|
|
@@ -2778,7 +2788,13 @@
|
|
|
2778
2788
|
"description": "switch to the specified lane",
|
|
2779
2789
|
"extendedDescription": "",
|
|
2780
2790
|
"group": "ungrouped",
|
|
2781
|
-
"private": true
|
|
2791
|
+
"private": true,
|
|
2792
|
+
"arguments": [
|
|
2793
|
+
{
|
|
2794
|
+
"name": "lane",
|
|
2795
|
+
"description": "lane-name or lane-id (if not exists locally) to switch to"
|
|
2796
|
+
}
|
|
2797
|
+
]
|
|
2782
2798
|
},
|
|
2783
2799
|
{
|
|
2784
2800
|
"name": "show [lane-name]",
|
|
@@ -2946,6 +2962,11 @@
|
|
|
2946
2962
|
"x",
|
|
2947
2963
|
"skip-dependency-installation",
|
|
2948
2964
|
"do not install packages of the imported components"
|
|
2965
|
+
],
|
|
2966
|
+
[
|
|
2967
|
+
"p",
|
|
2968
|
+
"pattern <component-pattern>",
|
|
2969
|
+
"EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty"
|
|
2949
2970
|
]
|
|
2950
2971
|
],
|
|
2951
2972
|
"description": "import a remote lane to your workspace",
|
|
@@ -3062,7 +3083,7 @@
|
|
|
3062
3083
|
]
|
|
3063
3084
|
},
|
|
3064
3085
|
{
|
|
3065
|
-
"name": "switch <lane>",
|
|
3086
|
+
"name": "switch <lane> [pattern]",
|
|
3066
3087
|
"alias": "",
|
|
3067
3088
|
"options": [
|
|
3068
3089
|
[
|
|
@@ -3085,6 +3106,11 @@
|
|
|
3085
3106
|
"skip-dependency-installation",
|
|
3086
3107
|
"do not install packages of the imported components"
|
|
3087
3108
|
],
|
|
3109
|
+
[
|
|
3110
|
+
"p",
|
|
3111
|
+
"pattern <component-pattern>",
|
|
3112
|
+
"EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty"
|
|
3113
|
+
],
|
|
3088
3114
|
[
|
|
3089
3115
|
"j",
|
|
3090
3116
|
"json",
|
|
@@ -3094,7 +3120,13 @@
|
|
|
3094
3120
|
"description": "switch to the specified lane",
|
|
3095
3121
|
"extendedDescription": "",
|
|
3096
3122
|
"group": "ungrouped",
|
|
3097
|
-
"private": true
|
|
3123
|
+
"private": true,
|
|
3124
|
+
"arguments": [
|
|
3125
|
+
{
|
|
3126
|
+
"name": "lane",
|
|
3127
|
+
"description": "lane-name or lane-id (if not exists locally) to switch to"
|
|
3128
|
+
}
|
|
3129
|
+
]
|
|
3098
3130
|
},
|
|
3099
3131
|
{
|
|
3100
3132
|
"name": "_merge-lane <from-lane> [to-lane]",
|
package/cli-reference.mdx
CHANGED
|
@@ -770,7 +770,7 @@ when no package is specified, all workspace dependencies are installed and all w
|
|
|
770
770
|
|
|
771
771
|
### lane switch
|
|
772
772
|
|
|
773
|
-
**Usage**: `lane switch <lane
|
|
773
|
+
**Usage**: `lane switch <lane> [pattern]`
|
|
774
774
|
|
|
775
775
|
**Description**: switch to the specified lane
|
|
776
776
|
|
|
@@ -780,6 +780,7 @@ when no package is specified, all workspace dependencies are installed and all w
|
|
|
780
780
|
| `--merge [strategy]` | `-m` | merge local changes with the checked out version. strategy should be "theirs", "ours" or "manual" |
|
|
781
781
|
| `--get-all` | `-a` | checkout all components in a lane include ones that do not exist in the workspace |
|
|
782
782
|
| `--skip-dependency-installation` | `-x` | do not install packages of the imported components |
|
|
783
|
+
| `--pattern <component-pattern>` | `-p` | EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty |
|
|
783
784
|
| `--json` | `-j` | return the output as JSON |
|
|
784
785
|
|
|
785
786
|
### lane show
|
|
@@ -870,9 +871,10 @@ bit lane diff from to => diff between "from" lane and "to" lane.
|
|
|
870
871
|
|
|
871
872
|
**Description**: import a remote lane to your workspace
|
|
872
873
|
|
|
873
|
-
| **Option** | **Option alias** | **Description**
|
|
874
|
-
| -------------------------------- | :--------------: |
|
|
875
|
-
| `--skip-dependency-installation` | `-x` | do not install packages of the imported components
|
|
874
|
+
| **Option** | **Option alias** | **Description** |
|
|
875
|
+
| -------------------------------- | :--------------: | ------------------------------------------------------------------------------------------------- |
|
|
876
|
+
| `--skip-dependency-installation` | `-x` | do not install packages of the imported components |
|
|
877
|
+
| `--pattern <component-pattern>` | `-p` | EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty |
|
|
876
878
|
|
|
877
879
|
### lane merge
|
|
878
880
|
|
package/dist/cli-reference.json
CHANGED
|
@@ -1976,71 +1976,6 @@
|
|
|
1976
1976
|
"group": "ungrouped",
|
|
1977
1977
|
"private": true
|
|
1978
1978
|
},
|
|
1979
|
-
{
|
|
1980
|
-
"name": "checkout <to> [component-pattern]",
|
|
1981
|
-
"alias": "U",
|
|
1982
|
-
"options": [
|
|
1983
|
-
[
|
|
1984
|
-
"i",
|
|
1985
|
-
"interactive-merge",
|
|
1986
|
-
"when a component is modified and the merge process found conflicts, display options to resolve them"
|
|
1987
|
-
],
|
|
1988
|
-
[
|
|
1989
|
-
"o",
|
|
1990
|
-
"ours",
|
|
1991
|
-
"in case of a conflict, override the used version with the current modification"
|
|
1992
|
-
],
|
|
1993
|
-
[
|
|
1994
|
-
"t",
|
|
1995
|
-
"theirs",
|
|
1996
|
-
"in case of a conflict, override the current modification with the specified version"
|
|
1997
|
-
],
|
|
1998
|
-
[
|
|
1999
|
-
"m",
|
|
2000
|
-
"manual",
|
|
2001
|
-
"in case of a conflict, leave the files with a conflict state to resolve them manually later"
|
|
2002
|
-
],
|
|
2003
|
-
[
|
|
2004
|
-
"r",
|
|
2005
|
-
"reset",
|
|
2006
|
-
"revert changes that were not snapped/tagged"
|
|
2007
|
-
],
|
|
2008
|
-
[
|
|
2009
|
-
"a",
|
|
2010
|
-
"all",
|
|
2011
|
-
"all components"
|
|
2012
|
-
],
|
|
2013
|
-
[
|
|
2014
|
-
"e",
|
|
2015
|
-
"workspace-only",
|
|
2016
|
-
"when on a lane, avoid introducing new components from the remote lane that do not exist locally"
|
|
2017
|
-
],
|
|
2018
|
-
[
|
|
2019
|
-
"v",
|
|
2020
|
-
"verbose",
|
|
2021
|
-
"showing verbose output for inspection"
|
|
2022
|
-
],
|
|
2023
|
-
[
|
|
2024
|
-
"x",
|
|
2025
|
-
"skip-dependency-installation",
|
|
2026
|
-
"do not install packages of the imported components"
|
|
2027
|
-
]
|
|
2028
|
-
],
|
|
2029
|
-
"description": "switch between component versions or remove local changes",
|
|
2030
|
-
"extendedDescription": "\n `bit checkout <version> [component-pattern]` => checkout the specified ids (or all components when --all is used) to the specified version\n `bit checkout head [component-pattern]` => checkout to the last snap/tag, omit [component-pattern] to checkout head for all\n `bit checkout latest [component-pattern]` => checkout to the latest satisfying semver tag, omit [component-pattern] to checkout latest for all\n `bit checkout reset [component-pattern]` => remove local modifications from the specified ids (or all components when --all is used)",
|
|
2031
|
-
"group": "development",
|
|
2032
|
-
"private": false,
|
|
2033
|
-
"arguments": [
|
|
2034
|
-
{
|
|
2035
|
-
"name": "to",
|
|
2036
|
-
"description": "permitted values: [head, latest, reset, specific-version]. 'head' - last snap/tag. 'latest' - semver latest tag. 'reset' - removes local changes"
|
|
2037
|
-
},
|
|
2038
|
-
{
|
|
2039
|
-
"name": "component-pattern",
|
|
2040
|
-
"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"
|
|
2041
|
-
}
|
|
2042
|
-
]
|
|
2043
|
-
},
|
|
2044
1979
|
{
|
|
2045
1980
|
"name": "remove <component-pattern>",
|
|
2046
1981
|
"alias": "rm",
|
|
@@ -2119,6 +2054,71 @@
|
|
|
2119
2054
|
"group": "collaborate",
|
|
2120
2055
|
"private": false
|
|
2121
2056
|
},
|
|
2057
|
+
{
|
|
2058
|
+
"name": "checkout <to> [component-pattern]",
|
|
2059
|
+
"alias": "U",
|
|
2060
|
+
"options": [
|
|
2061
|
+
[
|
|
2062
|
+
"i",
|
|
2063
|
+
"interactive-merge",
|
|
2064
|
+
"when a component is modified and the merge process found conflicts, display options to resolve them"
|
|
2065
|
+
],
|
|
2066
|
+
[
|
|
2067
|
+
"o",
|
|
2068
|
+
"ours",
|
|
2069
|
+
"in case of a conflict, override the used version with the current modification"
|
|
2070
|
+
],
|
|
2071
|
+
[
|
|
2072
|
+
"t",
|
|
2073
|
+
"theirs",
|
|
2074
|
+
"in case of a conflict, override the current modification with the specified version"
|
|
2075
|
+
],
|
|
2076
|
+
[
|
|
2077
|
+
"m",
|
|
2078
|
+
"manual",
|
|
2079
|
+
"in case of a conflict, leave the files with a conflict state to resolve them manually later"
|
|
2080
|
+
],
|
|
2081
|
+
[
|
|
2082
|
+
"r",
|
|
2083
|
+
"reset",
|
|
2084
|
+
"revert changes that were not snapped/tagged"
|
|
2085
|
+
],
|
|
2086
|
+
[
|
|
2087
|
+
"a",
|
|
2088
|
+
"all",
|
|
2089
|
+
"all components"
|
|
2090
|
+
],
|
|
2091
|
+
[
|
|
2092
|
+
"e",
|
|
2093
|
+
"workspace-only",
|
|
2094
|
+
"when on a lane, avoid introducing new components from the remote lane that do not exist locally"
|
|
2095
|
+
],
|
|
2096
|
+
[
|
|
2097
|
+
"v",
|
|
2098
|
+
"verbose",
|
|
2099
|
+
"showing verbose output for inspection"
|
|
2100
|
+
],
|
|
2101
|
+
[
|
|
2102
|
+
"x",
|
|
2103
|
+
"skip-dependency-installation",
|
|
2104
|
+
"do not install packages of the imported components"
|
|
2105
|
+
]
|
|
2106
|
+
],
|
|
2107
|
+
"description": "switch between component versions or remove local changes",
|
|
2108
|
+
"extendedDescription": "\n `bit checkout <version> [component-pattern]` => checkout the specified ids (or all components when --all is used) to the specified version\n `bit checkout head [component-pattern]` => checkout to the last snap/tag, omit [component-pattern] to checkout head for all\n `bit checkout latest [component-pattern]` => checkout to the latest satisfying semver tag, omit [component-pattern] to checkout latest for all\n `bit checkout reset [component-pattern]` => remove local modifications from the specified ids (or all components when --all is used)",
|
|
2109
|
+
"group": "development",
|
|
2110
|
+
"private": false,
|
|
2111
|
+
"arguments": [
|
|
2112
|
+
{
|
|
2113
|
+
"name": "to",
|
|
2114
|
+
"description": "permitted values: [head, latest, reset, specific-version]. 'head' - last snap/tag. 'latest' - semver latest tag. 'reset' - removes local changes"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"name": "component-pattern",
|
|
2118
|
+
"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"
|
|
2119
|
+
}
|
|
2120
|
+
]
|
|
2121
|
+
},
|
|
2122
2122
|
{
|
|
2123
2123
|
"name": "resume-export <export-id> <remotes...>",
|
|
2124
2124
|
"alias": "",
|
|
@@ -2194,6 +2194,11 @@
|
|
|
2194
2194
|
"j",
|
|
2195
2195
|
"json",
|
|
2196
2196
|
"return the insights in json format"
|
|
2197
|
+
],
|
|
2198
|
+
[
|
|
2199
|
+
"",
|
|
2200
|
+
"include-deps",
|
|
2201
|
+
"include component dependencies that are not in this workspace"
|
|
2197
2202
|
]
|
|
2198
2203
|
],
|
|
2199
2204
|
"description": "Insights on component graph",
|
|
@@ -2746,7 +2751,7 @@
|
|
|
2746
2751
|
"skipWorkspace": true
|
|
2747
2752
|
},
|
|
2748
2753
|
{
|
|
2749
|
-
"name": "switch <lane>",
|
|
2754
|
+
"name": "switch <lane> [pattern]",
|
|
2750
2755
|
"alias": "",
|
|
2751
2756
|
"options": [
|
|
2752
2757
|
[
|
|
@@ -2769,6 +2774,11 @@
|
|
|
2769
2774
|
"skip-dependency-installation",
|
|
2770
2775
|
"do not install packages of the imported components"
|
|
2771
2776
|
],
|
|
2777
|
+
[
|
|
2778
|
+
"p",
|
|
2779
|
+
"pattern <component-pattern>",
|
|
2780
|
+
"EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty"
|
|
2781
|
+
],
|
|
2772
2782
|
[
|
|
2773
2783
|
"j",
|
|
2774
2784
|
"json",
|
|
@@ -2778,7 +2788,13 @@
|
|
|
2778
2788
|
"description": "switch to the specified lane",
|
|
2779
2789
|
"extendedDescription": "",
|
|
2780
2790
|
"group": "ungrouped",
|
|
2781
|
-
"private": true
|
|
2791
|
+
"private": true,
|
|
2792
|
+
"arguments": [
|
|
2793
|
+
{
|
|
2794
|
+
"name": "lane",
|
|
2795
|
+
"description": "lane-name or lane-id (if not exists locally) to switch to"
|
|
2796
|
+
}
|
|
2797
|
+
]
|
|
2782
2798
|
},
|
|
2783
2799
|
{
|
|
2784
2800
|
"name": "show [lane-name]",
|
|
@@ -2946,6 +2962,11 @@
|
|
|
2946
2962
|
"x",
|
|
2947
2963
|
"skip-dependency-installation",
|
|
2948
2964
|
"do not install packages of the imported components"
|
|
2965
|
+
],
|
|
2966
|
+
[
|
|
2967
|
+
"p",
|
|
2968
|
+
"pattern <component-pattern>",
|
|
2969
|
+
"EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty"
|
|
2949
2970
|
]
|
|
2950
2971
|
],
|
|
2951
2972
|
"description": "import a remote lane to your workspace",
|
|
@@ -3062,7 +3083,7 @@
|
|
|
3062
3083
|
]
|
|
3063
3084
|
},
|
|
3064
3085
|
{
|
|
3065
|
-
"name": "switch <lane>",
|
|
3086
|
+
"name": "switch <lane> [pattern]",
|
|
3066
3087
|
"alias": "",
|
|
3067
3088
|
"options": [
|
|
3068
3089
|
[
|
|
@@ -3085,6 +3106,11 @@
|
|
|
3085
3106
|
"skip-dependency-installation",
|
|
3086
3107
|
"do not install packages of the imported components"
|
|
3087
3108
|
],
|
|
3109
|
+
[
|
|
3110
|
+
"p",
|
|
3111
|
+
"pattern <component-pattern>",
|
|
3112
|
+
"EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty"
|
|
3113
|
+
],
|
|
3088
3114
|
[
|
|
3089
3115
|
"j",
|
|
3090
3116
|
"json",
|
|
@@ -3094,7 +3120,13 @@
|
|
|
3094
3120
|
"description": "switch to the specified lane",
|
|
3095
3121
|
"extendedDescription": "",
|
|
3096
3122
|
"group": "ungrouped",
|
|
3097
|
-
"private": true
|
|
3123
|
+
"private": true,
|
|
3124
|
+
"arguments": [
|
|
3125
|
+
{
|
|
3126
|
+
"name": "lane",
|
|
3127
|
+
"description": "lane-name or lane-id (if not exists locally) to switch to"
|
|
3128
|
+
}
|
|
3129
|
+
]
|
|
3098
3130
|
},
|
|
3099
3131
|
{
|
|
3100
3132
|
"name": "_merge-lane <from-lane> [to-lane]",
|
|
@@ -3480,7 +3480,7 @@ function MDXContent(_ref) {
|
|
|
3480
3480
|
parentName: "p"
|
|
3481
3481
|
}, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
3482
3482
|
parentName: "p"
|
|
3483
|
-
}, "lane switch <lane>")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
3483
|
+
}, "lane switch <lane> [pattern]")), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
3484
3484
|
parentName: "p"
|
|
3485
3485
|
}, "Description"), ": switch to the specified lane"), (0, _react2.mdx)("table", null, (0, _react2.mdx)("thead", {
|
|
3486
3486
|
parentName: "table"
|
|
@@ -3570,6 +3570,21 @@ function MDXContent(_ref) {
|
|
|
3570
3570
|
"align": null
|
|
3571
3571
|
}, (0, _react2.mdx)("inlineCode", {
|
|
3572
3572
|
parentName: "td"
|
|
3573
|
+
}, "--pattern <component-pattern>")), (0, _react2.mdx)("td", {
|
|
3574
|
+
parentName: "tr",
|
|
3575
|
+
"align": "center"
|
|
3576
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
3577
|
+
parentName: "td"
|
|
3578
|
+
}, "-p")), (0, _react2.mdx)("td", {
|
|
3579
|
+
parentName: "tr",
|
|
3580
|
+
"align": null
|
|
3581
|
+
}, "EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty")), (0, _react2.mdx)("tr", {
|
|
3582
|
+
parentName: "tbody"
|
|
3583
|
+
}, (0, _react2.mdx)("td", {
|
|
3584
|
+
parentName: "tr",
|
|
3585
|
+
"align": null
|
|
3586
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
3587
|
+
parentName: "td"
|
|
3573
3588
|
}, "--json")), (0, _react2.mdx)("td", {
|
|
3574
3589
|
parentName: "tr",
|
|
3575
3590
|
"align": "center"
|
|
@@ -3903,7 +3918,22 @@ function MDXContent(_ref) {
|
|
|
3903
3918
|
}, "-x")), (0, _react2.mdx)("td", {
|
|
3904
3919
|
parentName: "tr",
|
|
3905
3920
|
"align": null
|
|
3906
|
-
}, "do not install packages of the imported components"))
|
|
3921
|
+
}, "do not install packages of the imported components")), (0, _react2.mdx)("tr", {
|
|
3922
|
+
parentName: "tbody"
|
|
3923
|
+
}, (0, _react2.mdx)("td", {
|
|
3924
|
+
parentName: "tr",
|
|
3925
|
+
"align": null
|
|
3926
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
3927
|
+
parentName: "td"
|
|
3928
|
+
}, "--pattern <component-pattern>")), (0, _react2.mdx)("td", {
|
|
3929
|
+
parentName: "tr",
|
|
3930
|
+
"align": "center"
|
|
3931
|
+
}, (0, _react2.mdx)("inlineCode", {
|
|
3932
|
+
parentName: "td"
|
|
3933
|
+
}, "-p")), (0, _react2.mdx)("td", {
|
|
3934
|
+
parentName: "tr",
|
|
3935
|
+
"align": null
|
|
3936
|
+
}, "EXPERIMENTAL. switch only the specified component-pattern. works only when the workspace is empty")))), (0, _react2.mdx)("h3", null, "lane merge"), (0, _react2.mdx)("p", null, (0, _react2.mdx)("strong", {
|
|
3907
3937
|
parentName: "p"
|
|
3908
3938
|
}, "Usage"), ": ", (0, _react2.mdx)("inlineCode", {
|
|
3909
3939
|
parentName: "p"
|