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
| #!/usr/bin/env node
|
| const { semver, error } = require('@vue/cli-shared-utils')
| const requiredVersion = require('../package.json').engines.node
|
| if (!semver.satisfies(process.version, requiredVersion)) {
| error(
| `You are using Node ${process.version}, but vue-cli-service ` +
| `requires Node ${requiredVersion}.\nPlease upgrade your Node version.`
| )
| process.exit(1)
| }
|
| const Service = require('../lib/Service')
| const service = new Service(process.env.VUE_CLI_CONTEXT || process.cwd())
|
| const rawArgv = process.argv.slice(2)
| const args = require('minimist')(rawArgv, {
| boolean: [
| // build
| 'modern',
| 'report',
| 'report-json',
| 'inline-vue',
| 'watch',
| // serve
| 'open',
| 'copy',
| 'https',
| // inspect
| 'verbose'
| ]
| })
| const command = args._[0]
|
| service.run(command, args, rawArgv).catch(err => {
| error(err)
| process.exit(1)
| })
|
|