generator-code 1.7.3 → 1.7.5
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/build/pipeline.yml +1 -0
- package/generators/app/dependencyVersions/package.json +10 -10
- package/generators/app/templates/ext-command-js/package.json +1 -3
- package/generators/app/templates/ext-command-ts/package.json +1 -3
- package/generators/app/templates/ext-command-ts/vscode-webpack/package.json +1 -3
- package/generators/app/templates/ext-command-web/package.json +1 -3
- package/package.json +4 -5
package/build/pipeline.yml
CHANGED
|
@@ -4,17 +4,17 @@
|
|
|
4
4
|
"version": "0.0.0",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@types/glob": "^8.0
|
|
7
|
+
"@types/glob": "^8.1.0",
|
|
8
8
|
"@types/mocha": "^10.0.1",
|
|
9
9
|
"@types/node": "16.x",
|
|
10
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
11
|
-
"@typescript-eslint/parser": "^5.
|
|
12
|
-
"eslint": "^8.
|
|
10
|
+
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
11
|
+
"@typescript-eslint/parser": "^5.56.0",
|
|
12
|
+
"eslint": "^8.36.0",
|
|
13
13
|
"glob": "^8.1.0",
|
|
14
|
-
"mocha": "^10.
|
|
15
|
-
"typescript": "^4.9.
|
|
16
|
-
"@vscode/test-electron": "^2.
|
|
17
|
-
"@vscode/test-web": "^0.0.
|
|
14
|
+
"mocha": "^10.2.0",
|
|
15
|
+
"typescript": "^4.9.5",
|
|
16
|
+
"@vscode/test-electron": "^2.3.0",
|
|
17
|
+
"@vscode/test-web": "^0.0.36",
|
|
18
18
|
"@types/webpack-env": "^1.18.0",
|
|
19
19
|
"@types/vscode-notebook-renderer": "^1.72.0",
|
|
20
20
|
"concurrently": "^5.3.0",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"ts-loader": "^9.4.2",
|
|
25
25
|
"vscode-dts": "^0.3.3",
|
|
26
26
|
"vscode-notebook-error-overlay": "^1.0.1",
|
|
27
|
-
"webpack": "^5.
|
|
27
|
+
"webpack": "^5.76.3",
|
|
28
28
|
"util": "^0.12.5",
|
|
29
29
|
"webpack-cli": "^5.0.1",
|
|
30
|
-
"webpack-dev-server": "^4.
|
|
30
|
+
"webpack-dev-server": "^4.13.1",
|
|
31
31
|
"assert": "^2.0.0",
|
|
32
32
|
"process": "^0.11.10"
|
|
33
33
|
}
|
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
"categories": [
|
|
10
10
|
"Other"
|
|
11
11
|
],
|
|
12
|
-
"activationEvents": [
|
|
13
|
-
<%- JSON.stringify(`onCommand:${name}.helloWorld`) %>
|
|
14
|
-
],
|
|
12
|
+
"activationEvents": [],
|
|
15
13
|
"main": "./out/extension.js",<% if (insiders) { %>
|
|
16
14
|
"enabledApiProposals": [],<% } %>
|
|
17
15
|
"contributes": {
|
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
"categories": [
|
|
10
10
|
"Other"
|
|
11
11
|
],
|
|
12
|
-
"activationEvents": [
|
|
13
|
-
<%- JSON.stringify(`onCommand:${name}.helloWorld`) %>
|
|
14
|
-
],
|
|
12
|
+
"activationEvents": [],
|
|
15
13
|
"main": "./dist/extension.js",<% if (insiders) { %>
|
|
16
14
|
"enabledApiProposals": [],<% } %>
|
|
17
15
|
"contributes": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-code",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"description": "Yeoman generator for Visual Studio Code extensions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yeoman-generator",
|
|
@@ -39,16 +39,15 @@
|
|
|
39
39
|
"request-light": "^0.7.0",
|
|
40
40
|
"sanitize-filename": "^1.6.3",
|
|
41
41
|
"which": "^3.0.0",
|
|
42
|
-
"yeoman-generator": "^5.
|
|
42
|
+
"yeoman-generator": "^5.8.0",
|
|
43
43
|
"yosay": "^2.0.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/mocha": "^10.0.1",
|
|
47
47
|
"@types/node": "^16.x",
|
|
48
48
|
"@types/yeoman-generator": "^5.2.11",
|
|
49
|
-
"@types/yeoman-test": "^4.0.3",
|
|
50
49
|
"mocha": "^10.2.0",
|
|
51
|
-
"yeoman-environment": "^3.
|
|
52
|
-
"yeoman-test": "^
|
|
50
|
+
"yeoman-environment": "^3.15.1",
|
|
51
|
+
"yeoman-test": "^7.4.0"
|
|
53
52
|
}
|
|
54
53
|
}
|