File tree Expand file tree Collapse file tree 7 files changed +55
-43
lines changed
templates/ext-command-web Expand file tree Collapse file tree 7 files changed +55
-43
lines changed Original file line number Diff line number Diff line change 13
13
14
14
strategy :
15
15
matrix :
16
- node-version : [18.x]
16
+ node-version : [18.x, 20.x ]
17
17
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
18
18
19
19
steps :
Original file line number Diff line number Diff line change @@ -35,12 +35,15 @@ extends:
35
35
- name : Linux
36
36
nodeVersions :
37
37
- 18.x
38
+ - 20.x
38
39
- name : MacOS
39
40
nodeVersions :
40
41
- 18.x
42
+ - 20.x
41
43
- name : Windows
42
44
nodeVersions :
43
45
- 18.x
46
+ - 20.x
44
47
45
48
testSteps :
46
49
- script : npm i
Original file line number Diff line number Diff line change 5
5
"private" : true ,
6
6
"dependencies" : {
7
7
"@types/mocha" : " ^10.0.6" ,
8
- "@types/node" : " 18 .x" ,
8
+ "@types/node" : " 20 .x" ,
9
9
"@types/assert" : " ^1.5.10" ,
10
10
"@typescript-eslint/eslint-plugin" : " ^7.11.0" ,
11
11
"@typescript-eslint/parser" : " ^7.11.0" ,
25
25
"ts-loader" : " ^9.5.1" ,
26
26
"vscode-dts" : " ^0.3.3" ,
27
27
"vscode-notebook-error-overlay" : " ^1.0.1" ,
28
- "webpack" : " ^5.91 .0" ,
28
+ "webpack" : " ^5.92 .0" ,
29
29
"util" : " ^0.12.5" ,
30
30
"webpack-cli" : " ^5.1.4" ,
31
31
"webpack-dev-server" : " ^5.0.4" ,
32
32
"assert" : " ^2.1.0" ,
33
33
"process" : " ^0.11.10" ,
34
34
"npm-run-all" : " ^4.1.5" ,
35
- "esbuild" : " ^0.21.4 " ,
35
+ "esbuild" : " ^0.21.5 " ,
36
36
"@esbuild-plugins/node-globals-polyfill" : " ^0.2.3"
37
37
}
38
38
}
Original file line number Diff line number Diff line change 1
1
// Place your settings in this file to overwrite default and user settings.
2
2
{
3
3
"files.exclude" : {
4
- "out " : false // set this to true to hide the "out " folder with the compiled JS files
4
+ "dist " : false // set this to true to hide the "dist " folder with the compiled JS files
5
5
},
6
6
"search.exclude" : {
7
- "out " : true // set this to false to include "out " folder in search results
7
+ "dist " : true // set this to false to include "dist " folder in search results
8
8
},
9
9
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10
10
"typescript.tsc.autoDetect" : " off"
Original file line number Diff line number Diff line change 1
1
// Place your settings in this file to overwrite default and user settings.
2
2
{
3
3
"files.exclude" : {
4
- "out " : false // set this to true to hide the "out " folder with the compiled JS files
4
+ "dist " : false // set this to true to hide the "dist " folder with the compiled JS files
5
5
},
6
6
"search.exclude" : {
7
- "out " : true // set this to false to include "out " folder in search results
7
+ "dist " : true // set this to false to include "dist " folder in search results
8
8
},
9
9
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10
10
"typescript.tsc.autoDetect" : " off"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " generator-code" ,
3
- "version" : " 1.10.1 " ,
3
+ "version" : " 1.11.0 " ,
4
4
"description" : " Yeoman generator for Visual Studio Code extensions." ,
5
5
"keywords" : [
6
6
" yeoman-generator" ,
26
26
"url" : " https://github.com/Microsoft"
27
27
},
28
28
"engines" : {
29
- "node" : " >=16.x "
29
+ "node" : " ^18.17.0 || >=20.5.0 "
30
30
},
31
31
"scripts" : {
32
32
"test" : " mocha" ,
44
44
},
45
45
"devDependencies" : {
46
46
"@types/mocha" : " ^10.0.6" ,
47
- "@types/node" : " ^16 .18.82 " ,
47
+ "@types/node" : " ^18 .18.5 " ,
48
48
"mocha" : " ^10.4.0" ,
49
- "yeoman-environment" : " ^4.4.0 " ,
49
+ "yeoman-environment" : " ^4.4.1 " ,
50
50
"yeoman-test" : " ^8.3.0"
51
51
}
52
52
}
You can’t perform that action at this time.
0 commit comments