Skip to content

Commit 988f804

Browse files
Hristo313Hristo HristovLipata
authored
remove lite-server package and quickstart (#1334)
* fix(cli): resolve dependabot alerts - remove ip and lite-server packages and upgrade browser-sync to latest * fix(cli): restore ip and browser-sync cnanges * fix(cli): upgrade packages that depend on lite-server * fix(cli): restore serve-static and cookie upgrades because they have dependancy with browser-sync version 3.0.3 * chore: release 14.2.2-beta.1 * fix(cli): add changes in yarn.lock * fix: remove quickstart files * merge master * fix(cli): remove unused dependencies --------- Co-authored-by: Hristo Hristov <[email protected]> Co-authored-by: lipata <[email protected]>
1 parent eafe457 commit 988f804

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+16
-1430
lines changed

.eslintrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"/node_modules/**/*",
2626
"/coverage/**/*",
2727
"/output/**/*",
28-
"/packages/cli/quickstart/**/*",
2928
"/packages/cli/templates/**/*",
3029
"**/files/**/*"
3130
],

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ packages/core/config/Config.schema.json
2828
!packages/cli/templates/jquery/**/files/**/*
2929
!packages/cli/templates/angular/**/files/**/*
3030
!packages/cli/templates/react/**/files/**/*
31-
!packages/cli/templates/quickstart/**/*
3231

3332
# Misc
3433
npm-debug.log*

.vscode/cSpell.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"language": "en",
77
// words - list of words to be always considered correct
88
"words": [
9-
"infragistics",
10-
"quickstart"
9+
"infragistics"
1110
],
1211
// flagWords - list of words to be always considered incorrect
1312
// This is useful for offensive words and common spelling errors.

.vscode/launch.json

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -175,48 +175,6 @@
175175
"upgrade-packages",
176176
]
177177
},
178-
{
179-
"type": "node",
180-
"request": "launch",
181-
"name": "Launch Quickstart jQuery",
182-
"cwd": "${workspaceRoot}/output",
183-
"program": "${workspaceRoot}/packages/cli/bin/execute.js",
184-
"console": "externalTerminal",
185-
"preLaunchTask": "build",
186-
"outFiles": ["${workspaceFolder}/**/*.js"],
187-
"args": [
188-
"quickstart",
189-
"--framework=jquery"
190-
]
191-
},
192-
{
193-
"type": "node",
194-
"request": "launch",
195-
"name": "Launch Quickstart React",
196-
"cwd": "${workspaceRoot}/output",
197-
"program": "${workspaceRoot}/packages/cli/bin/execute.js",
198-
"console": "externalTerminal",
199-
"preLaunchTask": "build",
200-
"outFiles": ["${workspaceFolder}/**/*.js"],
201-
"args": [
202-
"quickstart",
203-
"--framework=react"
204-
]
205-
},
206-
{
207-
"type": "node",
208-
"request": "launch",
209-
"name": "Launch Quickstart Angular",
210-
"cwd": "${workspaceRoot}/output",
211-
"program": "${workspaceRoot}/packages/cli/bin/execute.js",
212-
"console": "externalTerminal",
213-
"preLaunchTask": "build",
214-
"outFiles": ["${workspaceFolder}/**/*.js"],
215-
"args": [
216-
"quickstart",
217-
"--framework=angular"
218-
]
219-
},
220178
{
221179
"type": "node",
222180
"request": "launch",

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
},
2222
"tslint.exclude": [
2323
"**/files/**/*.ts",
24-
"./output/**/*.ts",
25-
"./quickstart/**/*.ts"
24+
"./output/**/*.ts"
2625
]
2726
}

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1901,7 +1901,6 @@ You can install the Ignite UI for Angular Schematics globally and use them to cr
19011901
- **templates, igx-ts, ig-ts**: Update Angular tests - references, configurations, and templates
19021902
- **templates, igx-ts**: Update angular charts packages to 8.2.12 #644
19031903
- **templates, js**: Update ignite-ui to v19.2 #625
1904-
- **templates, js**: Update jquery quickstart #625
19051904

19061905

19071906
# [4.3.6](https://github.com/IgniteUI/igniteui-cli/compare/v4.3.5...v4.3.6) (2020-01-29)
@@ -2207,7 +2206,6 @@ A brand new project template type for Ignite UI for Angular with built-in authen
22072206
* update Ignite UI for Angular to 6.0.0 and project to Angular 6 ([f878c37](https://github.com/IgniteUI/igniteui-cli/commit/f878c37))
22082207
* update Ignite UI Angular wrappers project to Angular 6 [7868d8f](https://github.com/IgniteUI/igniteui-cli/commit/7868d8f)
22092208
* update Ignite UI for JavaScript to 18.1 in jQuery, React and Angular wrappers projects ([16afac22](https://github.com/IgniteUI/igniteui-cli/commit/16afac22), [1c91a4d](https://github.com/IgniteUI/igniteui-cli/commit/1c91a4d), [65b8190](https://github.com/IgniteUI/igniteui-cli/commit/65b8190))
2210-
* update quickstart projects ([84d8fc9](https://github.com/IgniteUI/igniteui-cli/commit/84d8fc9))
22112209

22122210

22132211
<a name="1.3.0"></a>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ See the [Contribution guide](https://github.com/IgniteUI/igniteui-cli/blob/maste
150150
3. To build the packages, run `yarn build` in the project `root`.
151151
4. Open in Visual Studio Code
152152

153-
There is a predefined launch.config file for VS Code in the root folder, so you can use VS Code View/Debug window and choose one of the predefined actions. These include launching the step by step guide, quickstart project, create new project for a particular framework or add components.
153+
There is a predefined launch.config file for VS Code in the root folder, so you can use VS Code View/Debug window and choose one of the predefined actions. These include launching the step by step guide, create new project for a particular framework or add components.
154154

155155
5. Hit Start Debugging/F5
156156

package.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
"exclude": [
4242
"**/*.d.ts",
4343
"output/",
44-
"packages/cli/templates/quickstart/",
4544
"packages/cli/templates/**/files/",
4645
"packages/igx-templates/"
4746
],
@@ -77,23 +76,13 @@
7776
"jasmine-spec-reporter": "^7.0.0",
7877
"lerna": "^8.1.9",
7978
"lerna-changelog": "^2.2.0",
80-
"lite-server": "^2.6.1",
8179
"nyc": "^17.0.0",
8280
"resolve": "^1.22.8",
8381
"source-map-support": "^0.5.21",
8482
"ts-node": "^10.9.2",
8583
"tslint": "^5.11.0",
8684
"typescript": "~5.6.2",
87-
"typescript-json-schema": "^0.65.1",
88-
"parse-url": "^8.1.0",
89-
"braces": "^3.0.3",
90-
"highlight.js": "^10.4.1",
91-
"mem": "^4.0.0",
92-
"tar": "^6.2.1",
93-
"micromatch": "^4.0.8",
94-
"trim-newlines": "^3.0.1",
95-
"parse-path": "^5.0.0",
96-
"http-cache-semantics": "^4.1.1"
85+
"typescript-json-schema": "^0.65.1"
9786
},
9887
"workspaces": [
9988
"packages/*"

packages/cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ See the [Contribution guide](https://github.com/IgniteUI/igniteui-cli/blob/maste
118118
2. Install dependencies with `npm install`
119119
3. Open in Visual Studio Code
120120

121-
There is a predefined launch.config file for VS Code in the root folder, so you can use VS Code View/Debug window and choose one of the predefined actions. These include launching the step by step guide, quickstart project, create new project for a particular framework or add components.
121+
There is a predefined launch.config file for VS Code in the root folder, so you can use VS Code View/Debug window and choose one of the predefined actions. These include launching the step by step guide, create new project for a particular framework or add components.
122122

123123
4. Hit Start Debugging/F5
124124

packages/cli/lib/cli.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import {
1010
generate,
1111
list,
1212
newCommand,
13-
quickstart,
14-
QUICKSTART_COMMAND_NAME,
1513
start,
1614
test,
1715
upgrade,
@@ -46,7 +44,6 @@ export async function run(args = null) {
4644
await yargsModule
4745
.scriptName("") // prevent the addition of the name of the executing script in the usage output
4846
.usage("") // do not show any usage instructions before the commands list
49-
.command(quickstart)
5047
.command(newCommand)
5148
.command(add)
5249
.command(build)
@@ -106,11 +103,6 @@ export async function run(args = null) {
106103
logHelp();
107104
}
108105

109-
if (command === QUICKSTART_COMMAND_NAME && !helpRequest) {
110-
Util.log("quickstart Created");
111-
return;
112-
}
113-
114106
// since we are providing a custom callback to `yargsModule.parseAsync`, we need to handle the output as well
115107
// ref - https://yargs.js.org/docs/#api-reference-parseargs-context-parsecallback
116108
if (output) {

0 commit comments

Comments
 (0)