igniteui-cli 14.2.2-beta.1 → 14.2.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.
|
@@ -34,6 +34,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
34
34
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35
35
|
const cli_core_1 = require("@igniteui/cli-core");
|
|
36
36
|
const path = __importStar(require("path"));
|
|
37
|
+
const resolve = __importStar(require("resolve"));
|
|
37
38
|
const command = {
|
|
38
39
|
command: "quickstart",
|
|
39
40
|
describe: "creates rich feature grid",
|
|
@@ -93,6 +94,9 @@ const command = {
|
|
|
93
94
|
cli_core_1.Util.log("react-quickstart loaded");
|
|
94
95
|
cli_core_1.Util.execSync("npm install");
|
|
95
96
|
cli_core_1.Util.execSync("npm run webpack");
|
|
97
|
+
// lite-server installed per project
|
|
98
|
+
const liteServer = require(resolve.sync("lite-server", { basedir: process.cwd() }));
|
|
99
|
+
liteServer.server();
|
|
96
100
|
}
|
|
97
101
|
if (argv.framework === "angular") {
|
|
98
102
|
cli_core_1.Util.log("angular-quickstart loaded");
|
|
@@ -102,6 +106,9 @@ const command = {
|
|
|
102
106
|
if (argv.framework === "jquery") {
|
|
103
107
|
cli_core_1.Util.log("jquery-quickstart loaded");
|
|
104
108
|
cli_core_1.Util.execSync("npm install");
|
|
109
|
+
// lite-server installed per project
|
|
110
|
+
const liteServer = require(resolve.sync("lite-server", { basedir: process.cwd() }));
|
|
111
|
+
liteServer.server();
|
|
105
112
|
}
|
|
106
113
|
});
|
|
107
114
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "14.2.2
|
|
3
|
+
"version": "14.2.2",
|
|
4
4
|
"description": "CLI tool for creating Ignite UI projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
"all": true
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@igniteui/angular-templates": "~18.2.1422
|
|
76
|
-
"@igniteui/cli-core": "~14.2.2
|
|
75
|
+
"@igniteui/angular-templates": "~18.2.1422",
|
|
76
|
+
"@igniteui/cli-core": "~14.2.2",
|
|
77
77
|
"@inquirer/prompts": "^5.4.0",
|
|
78
78
|
"@types/yargs": "^17.0.33",
|
|
79
79
|
"chalk": "^5.3.0",
|
|
@@ -91,9 +91,10 @@
|
|
|
91
91
|
"@types/jasmine": "^5.1.4",
|
|
92
92
|
"@types/node": "^22.5.5",
|
|
93
93
|
"browser-sync": "^3.0.3",
|
|
94
|
-
"coveralls": "^
|
|
94
|
+
"coveralls-next": "^4.2.1",
|
|
95
95
|
"jasmine": "^5.3.0",
|
|
96
96
|
"jasmine-spec-reporter": "^7.0.0",
|
|
97
|
+
"lite-server": "^2.6.1",
|
|
97
98
|
"nyc": "^17.0.0",
|
|
98
99
|
"rxjs": "^7.8.1",
|
|
99
100
|
"source-map-support": "^0.5.21",
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"description": "Ignite UI for jQuery Angular Wrappers quick start",
|
|
5
5
|
"scripts": {
|
|
6
|
+
"start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
|
|
6
7
|
"lint": "tslint ./app/**/*.ts -t verbose",
|
|
8
|
+
"lite": "lite-server",
|
|
7
9
|
"tsc": "tsc",
|
|
8
10
|
"tsc:w": "tsc -w",
|
|
9
11
|
"webdriver:update": "webdriver-manager update"
|
|
@@ -28,6 +30,7 @@
|
|
|
28
30
|
},
|
|
29
31
|
"devDependencies": {
|
|
30
32
|
"concurrently": "^3.1.0",
|
|
33
|
+
"lite-server": "^2.5.4",
|
|
31
34
|
"typescript": "~5.5.4",
|
|
32
35
|
"canonical-path": "0.0.2",
|
|
33
36
|
"http-server": "^0.12.1",
|