generator-code 1.7.1 → 1.7.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/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Yo Code - Extension and Customization Generator
2
-
3
- [![Build Status](https://github.com/microsoft/vscode-generator-code/actions/workflows/node.js.yml/badge.svg)](https://github.com/microsoft/vscode-generator-code/actions)
2
+ [![npm Package](https://img.shields.io/npm/v/generator-code.svg?style=flat-square)](https://www.npmjs.org/package/generator-code)
3
+ [![NPM Downloads](https://img.shields.io/npm/dm/generator-code.svg)](https://npmjs.org/package/generator-code)
4
+ [![Build Status](https://github.com/microsoft/vscode-generator-code/actions/workflows/tests.yml/badge.svg)](https://github.com/microsoft/vscode-generator-code/actions/tests.yml)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
6
 
5
7
  We have written a Yeoman generator to help get you started. We plan to add templates for most extension/customization types into this.
6
8
 
@@ -26,7 +26,11 @@ extends:
26
26
  npmPackages:
27
27
  - name: generator-code
28
28
 
29
- buildPlatforms:
29
+ buildSteps:
30
+ - script: npm i
31
+ displayName: Install dependencies
32
+
33
+ testPlatforms:
30
34
  - name: Linux
31
35
  nodeVersions:
32
36
  - 14.x
@@ -40,11 +44,10 @@ extends:
40
44
  - 14.x
41
45
  - 16.x
42
46
 
43
- buildSteps:
47
+ testSteps:
44
48
  - script: npm i
45
49
  displayName: Install dependencies
46
50
 
47
- testSteps:
48
51
  - bash: |
49
52
  /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
50
53
  echo ">>> Started xvfb"
@@ -5,16 +5,16 @@
5
5
  "private": true,
6
6
  "dependencies": {
7
7
  "@types/glob": "^8.0.0",
8
- "@types/mocha": "^10.0.0",
8
+ "@types/mocha": "^10.0.1",
9
9
  "@types/node": "16.x",
10
- "@typescript-eslint/eslint-plugin": "^5.42.0",
11
- "@typescript-eslint/parser": "^5.42.0",
12
- "eslint": "^8.26.0",
10
+ "@typescript-eslint/eslint-plugin": "^5.45.0",
11
+ "@typescript-eslint/parser": "^5.45.0",
12
+ "eslint": "^8.28.0",
13
13
  "glob": "^8.0.3",
14
14
  "mocha": "^10.1.0",
15
- "typescript": "^4.8.4",
15
+ "typescript": "^4.9.3",
16
16
  "@vscode/test-electron": "^2.2.0",
17
- "@vscode/test-web": "^0.0.32",
17
+ "@vscode/test-web": "^0.0.33",
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.1",
25
25
  "vscode-dts": "^0.3.3",
26
26
  "vscode-notebook-error-overlay": "^1.0.1",
27
- "webpack": "^5.74.0",
27
+ "webpack": "^5.75.0",
28
28
  "util": "^0.12.5",
29
- "webpack-cli": "^4.10.0",
30
- "webpack-dev-server": "^4.9.3",
29
+ "webpack-cli": "^5.0.0",
30
+ "webpack-dev-server": "^4.11.1",
31
31
  "assert": "^2.0.0",
32
32
  "process": "^0.11.10"
33
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-code",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "Yeoman generator for Visual Studio Code extensions.",
5
5
  "keywords": [
6
6
  "yeoman-generator",
@@ -35,15 +35,15 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "chalk": "^4.1.2",
38
- "fast-plist": "^0.1.2",
39
- "request-light": "^0.5.8",
38
+ "fast-plist": "^0.1.3",
39
+ "request-light": "^0.6.0",
40
40
  "sanitize-filename": "^1.6.3",
41
- "which": "^2.0.2",
41
+ "which": "^3.0.0",
42
42
  "yeoman-generator": "^5.7.0",
43
43
  "yosay": "^2.0.2"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/mocha": "^10.0.0",
46
+ "@types/mocha": "^10.0.1",
47
47
  "@types/node": "^16.x",
48
48
  "@types/yeoman-generator": "^5.2.11",
49
49
  "@types/yeoman-test": "^4.0.3",