We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c37fc commit 084a803Copy full SHA for 084a803
bin/adviz.js
@@ -18,6 +18,7 @@ adviz
18
.command('start')
19
.usage('<argument> [options]')
20
.argument('<name>', 'The name of the project to build.')
21
+ .option('-h, --host [host]', 'Set the host listening on')
22
.option('-p, --port [port]', 'Set the port listening on')
23
.action((name, options) => {
24
CommandManager.start(name, options, rootPath);
src/command-manager.ts
@@ -1,8 +1,6 @@
1
import { spawn } from 'child_process';
2
import { env } from 'process';
3
-
4
import AdmZip from 'adm-zip';
5
6
import { readJsonFromVisual } from './utils.js';
7
8
const ngJson = readJsonFromVisual('angular.json');
0 commit comments