igniteui-cli 14.9.0 → 14.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/commands/start.js
CHANGED
|
@@ -40,16 +40,16 @@ const path = __importStar(require("path"));
|
|
|
40
40
|
const resolve = __importStar(require("resolve"));
|
|
41
41
|
const build_1 = __importDefault(require("./build"));
|
|
42
42
|
const execSyncNpmStart = (port, options) => {
|
|
43
|
-
const args = ['start'];
|
|
44
43
|
if (port) {
|
|
45
44
|
// Validate port is a number to prevent command injection
|
|
46
45
|
if (!Number.isInteger(port) || port < 0 || port > 65535) {
|
|
47
46
|
cli_core_1.Util.error(`Invalid port number: ${port}`, "red");
|
|
48
47
|
return;
|
|
49
48
|
}
|
|
50
|
-
|
|
49
|
+
cli_core_1.Util.execSync(`npm start -- --port=${port}`, options);
|
|
50
|
+
return;
|
|
51
51
|
}
|
|
52
|
-
cli_core_1.Util.
|
|
52
|
+
cli_core_1.Util.execSync(`npm start`, options);
|
|
53
53
|
};
|
|
54
54
|
const command = {
|
|
55
55
|
command: "start",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "14.9.
|
|
3
|
+
"version": "14.9.2",
|
|
4
4
|
"description": "CLI tool for creating Ignite UI projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"all": true
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@igniteui/angular-templates": "~21.1.
|
|
74
|
-
"@igniteui/cli-core": "~14.9.
|
|
73
|
+
"@igniteui/angular-templates": "~21.1.1492",
|
|
74
|
+
"@igniteui/cli-core": "~14.9.2",
|
|
75
75
|
"@inquirer/prompts": "^7.9.0",
|
|
76
76
|
"@types/yargs": "^17.0.33",
|
|
77
77
|
"chalk": "^5.3.0",
|
|
@@ -10,27 +10,27 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "~21.
|
|
14
|
-
"@angular/common": "~21.
|
|
15
|
-
"@angular/compiler": "~21.
|
|
16
|
-
"@angular/core": "~21.
|
|
17
|
-
"@angular/forms": "~21.
|
|
18
|
-
"@angular/platform-browser": "~21.
|
|
19
|
-
"@angular/platform-browser-dynamic": "~21.
|
|
20
|
-
"@angular/router": "~21.
|
|
13
|
+
"@angular/animations": "~21.1.5",
|
|
14
|
+
"@angular/common": "~21.1.5",
|
|
15
|
+
"@angular/compiler": "~21.1.5",
|
|
16
|
+
"@angular/core": "~21.1.5",
|
|
17
|
+
"@angular/forms": "~21.1.5",
|
|
18
|
+
"@angular/platform-browser": "~21.1.5",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~21.1.5",
|
|
20
|
+
"@angular/router": "~21.1.5",
|
|
21
21
|
"jquery": "^3.7.1",
|
|
22
22
|
"jquery-ui": "^1.13.3",
|
|
23
|
-
"igniteui-angular-wrappers": "~21.0.
|
|
23
|
+
"igniteui-angular-wrappers": "~21.0.1",
|
|
24
24
|
"ignite-ui": "~23.1",
|
|
25
25
|
"rxjs": "~7.8.0",
|
|
26
26
|
"tslib": "^2.3.0",
|
|
27
27
|
"zone.js": "~0.15.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@angular/build": "~21.
|
|
31
|
-
"@angular-devkit/build-angular": "~21.
|
|
32
|
-
"@angular/cli": "~21.
|
|
33
|
-
"@angular/compiler-cli": "~21.
|
|
30
|
+
"@angular/build": "~21.1.5",
|
|
31
|
+
"@angular-devkit/build-angular": "~21.1.5",
|
|
32
|
+
"@angular/cli": "~21.1.5",
|
|
33
|
+
"@angular/compiler-cli": "~21.1.5",
|
|
34
34
|
"@types/jasmine": "~5.1.4",
|
|
35
35
|
"@types/node": "^18.16.0",
|
|
36
36
|
"igniteui-cli": "^$(cliVersion)",
|