@@ -98,7 +98,6 @@ Click [here](./docs/PROJECT-CONFIG.md) for an in-depth overview of the project c
98
98
* [ ` velocitas component remove ID ` ] ( #velocitas-component-remove-id )
99
99
* [ ` velocitas create ` ] ( #velocitas-create )
100
100
* [ ` velocitas exec COMPONENT REF [ARGS...] ` ] ( #velocitas-exec-component-ref-args )
101
- * [ ` velocitas help [COMMANDS] ` ] ( #velocitas-help-commands )
102
101
* [ ` velocitas init ` ] ( #velocitas-init )
103
102
* [ ` velocitas package [NAME] ` ] ( #velocitas-package-name )
104
103
* [ ` velocitas sync ` ] ( #velocitas-sync )
@@ -127,11 +126,14 @@ Get the complete cache contents as JSON string or the value of a single key.
127
126
128
127
```
129
128
USAGE
130
- $ velocitas cache get [KEY]
129
+ $ velocitas cache get [KEY] [-p]
131
130
132
131
ARGUMENTS
133
132
KEY The key of a single cache entry to get.
134
133
134
+ FLAGS
135
+ -p, --path Print the cache path instead of the contents.
136
+
135
137
DESCRIPTION
136
138
Get the complete cache contents as JSON string or the value of a single key.
137
139
@@ -141,6 +143,9 @@ EXAMPLES
141
143
142
144
$ velocitas cache get foo
143
145
bar
146
+
147
+ $ velocitas cache get --path
148
+ /home/user/.velocitas/projects/...
144
149
```
145
150
146
151
_ See code: [ src/commands/cache/get.ts] ( src/commands/cache/get.ts ) _
@@ -216,7 +221,7 @@ USAGE
216
221
$ velocitas component remove ID
217
222
218
223
ARGUMENTS
219
- ID ID of the component to add
224
+ ID ID of the component to remove
220
225
221
226
DESCRIPTION
222
227
Remove project components.
@@ -233,7 +238,7 @@ Create a new Velocitas Vehicle App project.
233
238
234
239
```
235
240
USAGE
236
- $ velocitas create [-n <value>] [-c <value>] [-e <value>] [-i <value>]
241
+ $ velocitas create [-n <value>] [-c <value>] [-e <value>] [-i <value>... ]
237
242
238
243
FLAGS
239
244
-c, --core=<value> Which core to use for the project.
@@ -257,13 +262,13 @@ Executes a script contained in one of your installed components.
257
262
258
263
```
259
264
USAGE
260
- $ velocitas exec COMPONENT REF [ARGS...] [-v]
265
+ $ velocitas exec COMPONENT... REF... [ARGS... ...] [-v]
261
266
262
267
ARGUMENTS
263
- COMPONENT The component which provides the program
264
- REF Reference to the ID of the program to execute
265
- ARGS... Args for the executed program. All arguments and flags provided after the ref are forwarded to the invoked
266
- program.
268
+ COMPONENT... The component which provides the program
269
+ REF... Reference to the ID of the program to execute
270
+ ARGS...... Args for the executed program. All arguments and flags provided after the ref are forwarded to the
271
+ invoked program.
267
272
268
273
FLAGS
269
274
-v, --verbose Enable verbose logging. The flag may be provided before or in between the 2 positional arguments of
@@ -275,69 +280,49 @@ DESCRIPTION
275
280
276
281
EXAMPLES
277
282
$ velocitas exec runtime-local up
278
- Executing script...
283
+ Executing script...
279
284
```
280
285
281
286
_ See code: [ src/commands/exec/index.ts] ( src/commands/exec/index.ts ) _
282
287
283
- ## ` velocitas help [COMMANDS] `
284
-
285
- Display help for velocitas.
286
-
287
- ```
288
- USAGE
289
- $ velocitas help [COMMANDS] [-n]
290
-
291
- ARGUMENTS
292
- COMMANDS Command to show help for.
293
-
294
- FLAGS
295
- -n, --nested-commands Include all nested commands in the output.
296
-
297
- DESCRIPTION
298
- Display help for velocitas.
299
- ```
300
-
301
- _ See code: [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v5.2.20/src/commands/help.ts ) _
302
-
303
288
## ` velocitas init `
304
289
305
290
Initializes Velocitas Vehicle App
306
291
307
292
```
308
293
USAGE
309
- $ velocitas init [-p PACKAGE] [-s VERSION_SPECIFIER] [- v] [-f] [--no-hooks]
294
+ $ velocitas init [-v] [-f] [--no-hooks] [-s <value> -p <value> ]
310
295
311
296
FLAGS
312
- -p , --package Package to initialize
313
- -s , --specifier Version specifier for the specified package
314
- -f , --force Force (re-)download packages
315
- -v, --verbose Enable verbose logging
316
- --no-hooks Skip post init hooks
297
+ -f , --force Force (re-)download packages
298
+ -p , --package=<value> Package to initialize
299
+ -s , --specifier=<value> Version specifier for the specified package
300
+ -v, --verbose Enable verbose logging
301
+ --no-hooks Skip post init hooks
317
302
318
303
DESCRIPTION
319
304
Initializes Velocitas Vehicle App
320
305
321
306
EXAMPLES
322
307
$ velocitas init
323
- Initializing Velocitas packages ...
324
- ... Downloading package: 'pkg-velocitas-main:vx.x.x'
325
- ... Downloading package: 'devenv-devcontainer-setup:vx.x.x'
326
- ... Downloading package: 'devenv-runtimes:vx.x.x'
327
- ... Downloading package: 'devenv-github-templates:vx.x.x'
328
- ... Downloading package: 'devenv-github-workflows:vx.x.x'
308
+ Initializing Velocitas packages ...
309
+ ... Downloading package: 'pkg-velocitas-main:vx.x.x'
310
+ ... Downloading package: 'devenv-devcontainer-setup:vx.x.x'
311
+ ... Downloading package: 'devenv-runtimes:vx.x.x'
312
+ ... Downloading package: 'devenv-github-templates:vx.x.x'
313
+ ... Downloading package: 'devenv-github-workflows:vx.x.x'
329
314
330
315
$ velocitas init -p devenv-runtimes
331
- Initializing Velocitas packages ...
332
- ... Package 'devenv-runtimes:vx.x.x' added to .velocitas.json
333
- ... Downloading package: 'devenv-runtimes:vx.x.x'
334
- ... > Running post init hook for ...'
316
+ Initializing Velocitas packages ...
317
+ ... Package 'devenv-runtimes:vx.x.x' added to .velocitas.json
318
+ ... Downloading package: 'devenv-runtimes:vx.x.x'
319
+ ... > Running post init hook for ...'
335
320
336
321
$ velocitas init -p devenv-runtimes -s v3.0.0
337
- Initializing Velocitas packages ...
338
- ... Package 'devenv-runtimes:v3.0.0' added to .velocitas.json
339
- ... Downloading package: 'devenv-runtimes:v3.0.0'
340
- ... > Running post init hook for ...
322
+ Initializing Velocitas packages ...
323
+ ... Package 'devenv-runtimes:v3.0.0' added to .velocitas.json
324
+ ... Downloading package: 'devenv-runtimes:v3.0.0'
325
+ ... > Running post init hook for ...
341
326
```
342
327
343
328
_ See code: [ src/commands/init/index.ts] ( src/commands/init/index.ts ) _
@@ -361,18 +346,18 @@ DESCRIPTION
361
346
362
347
EXAMPLES
363
348
$ velocitas package devenv-runtimes
364
- devenv-runtimes:
365
- version: v3.0.0
366
- components:
367
- - id: runtime-local
368
- variables:
369
- - runtimeFilePath:
370
- type: string
371
- description: "Path to the file describing your custom runtime configuration."
372
- required: false
373
- default: runtime.json
374
- $ velocitas package --get-path devenv-runtimes
375
- /home/vscode/.velocitas/packages/devenv-runtimes/v3.0.0
349
+ devenv-runtimes:
350
+ version: v3.0.0
351
+ components:
352
+ - id: runtime-local
353
+ variables:
354
+ - runtimeFilePath:
355
+ type: string
356
+ description: "Path to the file describing your custom runtime configuration."
357
+ required: false
358
+ default: runtime.json
359
+ $ velocitas package --get-path devenv-runtimes
360
+ /home/vscode/.velocitas/packages/devenv-runtimes/v3.0.0
376
361
```
377
362
378
363
_ See code: [ src/commands/package/index.ts] ( src/commands/package/index.ts ) _
@@ -406,22 +391,23 @@ USAGE
406
391
$ velocitas upgrade [--dry-run] [--ignore-bounds] [--init] [-v]
407
392
408
393
FLAGS
409
- -v, --verbose Enable verbose logging
410
- --dry-run Check which packages can be upgraded
411
- --ignore-bounds Ignores specified version ranges and will result in upgrading to the latest available semantic version
412
- --init Initializes components after upgrading them.
394
+ -v, --verbose Enable verbose logging
395
+ --dry-run Check which packages can be upgraded
396
+ --ignore-bounds Ignores specified version ranges and will result in upgrading to the latest available semantic
397
+ version
398
+ --init Initializes components after upgrading them
413
399
414
400
DESCRIPTION
415
401
Updates Velocitas components.
416
402
417
403
EXAMPLES
418
404
$ velocitas upgrade
419
- Checking .velocitas.json for updates!
420
- ... pkg-velocitas-main:vx.x.x → up to date!
421
- ... devenv-devcontainer-setup:vx.x.x → up to date!
422
- ... devenv-runtimes:vx.x.x → vx.x.x
423
- ... devenv-github-templates:vx.x.x → up to date!
424
- ... devenv-github-workflows:vx.x.x → up to date!
405
+ Checking .velocitas.json for updates!
406
+ ... pkg-velocitas-main:vx.x.x → up to date!
407
+ ... devenv-devcontainer-setup:vx.x.x → up to date!
408
+ ... devenv-runtimes:vx.x.x → vx.x.x
409
+ ... devenv-github-templates:vx.x.x → up to date!
410
+ ... devenv-github-workflows:vx.x.x → up to date!
425
411
```
426
412
427
413
_ See code: [ src/commands/upgrade/index.ts] ( src/commands/upgrade/index.ts ) _
0 commit comments