generator-code 1.6.5 → 1.6.6
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/generators/app/index.js
CHANGED
|
@@ -203,13 +203,10 @@ module.exports = class extends Generator {
|
|
|
203
203
|
|
|
204
204
|
this.log('To start editing with Visual Studio Code, use the following commands:');
|
|
205
205
|
this.log('');
|
|
206
|
-
if (cdLocation !== '.') {
|
|
207
|
-
this.log(' cd ' + cdLocation);
|
|
208
|
-
}
|
|
209
206
|
if (!this.extensionConfig.insiders) {
|
|
210
|
-
this.log(' code
|
|
207
|
+
this.log(' code ' + cdLocation);
|
|
211
208
|
} else {
|
|
212
|
-
this.log(' code-insiders
|
|
209
|
+
this.log(' code-insiders ' + cdLocation);
|
|
213
210
|
}
|
|
214
211
|
this.log('');
|
|
215
212
|
}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
|
-
"@types/glob": "^7.
|
|
3
|
+
"@types/glob": "^7.2.0",
|
|
4
4
|
"@types/mocha": "^9.0.0",
|
|
5
5
|
"@types/node": "14.x",
|
|
6
|
-
"@typescript-eslint/eslint-plugin": "^5.1
|
|
7
|
-
"@typescript-eslint/parser": "^5.1
|
|
8
|
-
"eslint": "^8.
|
|
9
|
-
"glob": "^7.
|
|
6
|
+
"@typescript-eslint/eslint-plugin": "^5.9.1",
|
|
7
|
+
"@typescript-eslint/parser": "^5.9.1",
|
|
8
|
+
"eslint": "^8.6.0",
|
|
9
|
+
"glob": "^7.2.0",
|
|
10
10
|
"mocha": "^9.1.3",
|
|
11
|
-
"typescript": "^4.
|
|
12
|
-
"@vscode/test-electron": "^
|
|
11
|
+
"typescript": "^4.5.4",
|
|
12
|
+
"@vscode/test-electron": "^2.0.3",
|
|
13
13
|
"@vscode/test-web": "^0.0.15",
|
|
14
|
-
"@types/webpack-env": "^1.16.
|
|
14
|
+
"@types/webpack-env": "^1.16.3",
|
|
15
15
|
"@types/vscode-notebook-renderer": "^1.57.8",
|
|
16
16
|
"concurrently": "^5.3.0",
|
|
17
17
|
"css-loader": "^4.2.0",
|
|
18
18
|
"fork-ts-checker-webpack-plugin": "^5.0.14",
|
|
19
19
|
"style-loader": "^1.2.1",
|
|
20
|
-
"ts-loader": "^9.2.
|
|
21
|
-
"vscode-dts": "^0.3.
|
|
20
|
+
"ts-loader": "^9.2.6",
|
|
21
|
+
"vscode-dts": "^0.3.3",
|
|
22
22
|
"vscode-notebook-error-overlay": "^1.0.1",
|
|
23
|
-
"webpack": "^5.
|
|
23
|
+
"webpack": "^5.66.0",
|
|
24
24
|
"util": "^0.12.4",
|
|
25
|
-
"webpack-cli": "^4.
|
|
25
|
+
"webpack-cli": "^4.9.1",
|
|
26
26
|
"webpack-dev-server": "^3.11.2",
|
|
27
27
|
"assert": "^2.0.0",
|
|
28
28
|
"process": "^0.11.10"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|
|
@@ -11,8 +11,7 @@ This starter includes:
|
|
|
11
11
|
|
|
12
12
|
### Running this Sample
|
|
13
13
|
|
|
14
|
-
1. `
|
|
15
|
-
1. `code-insiders .`: Open the folder in VS Code Insiders
|
|
14
|
+
1. `code-insiders <%- name %>`: Open the folder in VS Code Insiders
|
|
16
15
|
1. Hit `F5` to build+debug
|
|
17
16
|
|
|
18
17
|
### Structure
|