-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathen-US.json
214 lines (214 loc) · 4.2 KB
/
en-US.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"root": [
{
"name": "fetch",
"tip": [
"Fetches a tool to the local machine"
]
},
{
"name": "pin",
"tip": [
"Pin your project's runtime or package manager\n",
"E: pin node@lts"
],
"next": []
},
{
"name": "list",
"tip": [
"Display the current toolchain"
],
"next": [
{
"name": "all",
"tip": [
"List all installed tools(include different version)"
]
}
],
"options": [
{
"name": "-c",
"alias": [
"--current"
],
"tip": [
"U: -c|--current\n",
"Show the currently-active tool(s)"
]
},
{
"name": "-d",
"alias": [
"--default"
],
"tip": [
"U: -d|--default\n",
"Show your default tool(s)"
]
},
{
"name": "--format",
"tip": [
"U: --format <format>\n",
"Specify the output format [possible values: human, plain]"
],
"next": [
{
"name": "human"
},
{
"name": "plain"
}
]
}
]
},
{
"name": "install",
"tip": [
"U: install <node|npm|yarn|...>\n",
"Install a tool in your toolchain\n",
"E: install node@lts\n",
" install yarn@1"
]
},
{
"name": "uninstall",
"tip": [
"U: uninstall <node|npm|yarn|...>\n",
"Uninstall a tool in your toolchain\n",
"E: uninstall node@lts"
]
},
{
"name": "which",
"tip": [
"U: which <node|npm|yarn|...>\n",
"Locate the actual binary that will be called by Volta"
]
},
{
"name": "run",
"tip": [
"Run a command with custom node/npm/pnpm/yarn versions"
],
"options": [
{
"name": "--node",
"next": 0,
"tip": [
"U: --node <version> <command>\n",
"Set the custom Node version"
]
},
{
"name": "--npm",
"next": 0,
"tip": [
"U: --npm <version> <command>\n",
"Set the custom Npm version"
]
},
{
"name": "--yarn",
"next": 0,
"tip": [
"U: --yarn <version> <command>\n",
"Set the custom Yarn version"
]
},
{
"name": "--env",
"next": 0,
"tip": [
"U: --env <NAME=value>\n",
"Set an environment variable (can be used multiple times)"
]
},
{
"name": "--no-yarn",
"tip": [
"Disable Yarn"
]
},
{
"name": "--bundled-npm",
"tip": [
"Force npm to be the version bundled with Node"
]
}
]
},
{
"name": "setup",
"tip": [
"Enable Volta for the current user / shell"
]
},
{
"name": "help",
"tip": [
"U: help <command>\n",
"Prints this message or the help of the given subcommand(s)"
]
},
{
"name": "completions",
"tip": [
"Generate Volta completions"
]
}
],
"options": [
{
"name": "-v",
"alias": [
"--version"
],
"tip": [
"U: -v|--version\n",
"Print the current version of Volta"
]
}
],
"common_options": [
{
"name": "-h",
"alias": [
"--help"
],
"tip": [
"U: -h|--help\n",
"Show help"
]
},
{
"name": "--verbose",
"tip": [
"Enables verbose diagnostics"
]
},
{
"name": "--very-verbose",
"tip": [
"Enables trace-level diagnostics"
]
},
{
"name": "--quiet",
"tip": [
"Prevents unnecessary output"
]
}
],
"info": {
"completion_info": {
"url": "https://volta.sh",
"description": [
"volta - Accessible JavaScript Tool Manager."
]
}
}
}