forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquasar-help
More file actions
executable file
·38 lines (31 loc) · 979 Bytes
/
quasar-help
File metadata and controls
executable file
·38 lines (31 loc) · 979 Bytes
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
#!/usr/bin/env node
console.log()
console.log(
require('fs').readFileSync(
require('path').join(__dirname, '../assets/logo.art'),
'utf8'
)
)
console.log(' Running @quasar/cli v' + require('../package.json').version)
const chalk = require('chalk')
console.log(`
Example usage
$ quasar <command> <options>
Help for a command
$ quasar <command> --help
$ quasar <command> -h
Options
--version, -v Print Quasar CLI version
Commands
create Create a project folder
info Display info about your machine
(and your App if in a project folder)
upgrade Check (and optionally) upgrade Quasar packages
from a Quasar project folder
serve Create an ad-hoc server on App's distributables
help, -h Displays this message
--------------
=> IMPORTANT !
=> ${chalk.italic('Trigger this inside of a Quasar project (and npm/yarn install) for more commands.')}
--------------
`)