-
Notifications
You must be signed in to change notification settings - Fork 405
/
Copy pathstart.command.ts
132 lines (125 loc) · 4.42 KB
/
start.command.ts
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
import { Command, CommanderStatic } from 'commander';
import { ERROR_PREFIX } from '../lib/ui';
import { getRemainingFlags } from '../lib/utils/remaining-flags';
import { AbstractCommand } from './abstract.command';
import { Input } from './command.input';
export class StartCommand extends AbstractCommand {
public load(program: CommanderStatic): void {
program
.command('start [app]')
.allowUnknownOption()
.option('-c, --config [path]', 'Path to nest-cli configuration file.')
.option('-p, --path [path]', 'Path to tsconfig file.')
.option('-w, --watch', 'Run in watch mode (live-reload).')
.option('-b, --builder [name]', 'Builder to be used (tsc, webpack, swc).')
.option('--watchAssets', 'Watch non-ts (e.g., .graphql) files mode.')
.option(
'-d, --debug [hostport] ',
'Run in debug mode (with --inspect flag).',
)
.option(
'--webpack',
'Use webpack for compilation (deprecated option, use --builder instead).',
)
.option('--webpackPath [path]', 'Path to webpack configuration.')
.option('--type-check', 'Enable type checking (when SWC is used).')
.option('--tsc', 'Use typescript compiler for compilation.')
.option(
'--sourceRoot [sourceRoot]',
'Points at the root of the source code for the single project in standard mode structures, or the default project in monorepo mode structures.',
)
.option(
'--entryFile [entryFile]',
"Path to the entry file where this command will work with. Defaults to the one defined at your Nest's CLI config file.",
)
.option('-e, --exec [binary]', 'Binary to run (default: "node").')
.option(
'--preserveWatchOutput',
'Use "preserveWatchOutput" option when using tsc watch mode.',
)
.option(
'--shell',
"Spawn child processes within a shell (see node's child_process.spawn() method docs). Default: true.",
true,
)
.option('--no-shell', 'Do not spawn child processes within a shell.')
.option(
'--env-file [path]',
'Path to an env file (.env) to be loaded into the environment.',
)
.description('Run Nest application.')
.action(async (app: string, command: Command) => {
const options: Input[] = [];
options.push({
name: 'config',
value: command.config,
});
const isWebpackEnabled = command.tsc ? false : command.webpack;
options.push({ name: 'webpack', value: isWebpackEnabled });
options.push({ name: 'debug', value: command.debug });
options.push({ name: 'watch', value: !!command.watch });
options.push({ name: 'watchAssets', value: !!command.watchAssets });
options.push({
name: 'path',
value: command.path,
});
options.push({
name: 'webpackPath',
value: command.webpackPath,
});
options.push({
name: 'exec',
value: command.exec,
});
options.push({
name: 'sourceRoot',
value: command.sourceRoot,
});
options.push({
name: 'entryFile',
value: command.entryFile,
});
options.push({
name: 'preserveWatchOutput',
value:
!!command.preserveWatchOutput &&
!!command.watch &&
!isWebpackEnabled,
});
options.push({
name: 'shell',
value: !!command.shell,
});
options.push({
name: 'envFile',
value: command.envFile,
});
const availableBuilders = ['tsc', 'webpack', 'swc'];
if (command.builder && !availableBuilders.includes(command.builder)) {
console.error(
ERROR_PREFIX +
` Invalid builder option: ${
command.builder
}. Available builders: ${availableBuilders.join(', ')}`,
);
return;
}
options.push({
name: 'builder',
value: command.builder,
});
options.push({
name: 'typeCheck',
value: command.typeCheck,
});
const inputs: Input[] = [];
inputs.push({ name: 'app', value: app });
const flags = getRemainingFlags(program);
try {
await this.action.handle(inputs, options, flags);
} catch (err) {
process.exit(1);
}
});
}
}