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 1313
1414 strategy :
1515 matrix :
16- node-version : [18.x]
16+ node-version : [18.x, 20.x ]
1717 # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1818
1919 steps :
Original file line number Diff line number Diff line change @@ -35,12 +35,15 @@ extends:
3535 - name : Linux
3636 nodeVersions :
3737 - 18.x
38+ - 20.x
3839 - name : MacOS
3940 nodeVersions :
4041 - 18.x
42+ - 20.x
4143 - name : Windows
4244 nodeVersions :
4345 - 18.x
46+ - 20.x
4447
4548 testSteps :
4649 - script : npm i
Original file line number Diff line number Diff line change 55 "private" : true ,
66 "dependencies" : {
77 "@types/mocha" : " ^10.0.6" ,
8- "@types/node" : " 18 .x" ,
8+ "@types/node" : " 20 .x" ,
99 "@types/assert" : " ^1.5.10" ,
1010 "@typescript-eslint/eslint-plugin" : " ^7.11.0" ,
1111 "@typescript-eslint/parser" : " ^7.11.0" ,
2525 "ts-loader" : " ^9.5.1" ,
2626 "vscode-dts" : " ^0.3.3" ,
2727 "vscode-notebook-error-overlay" : " ^1.0.1" ,
28- "webpack" : " ^5.91 .0" ,
28+ "webpack" : " ^5.92 .0" ,
2929 "util" : " ^0.12.5" ,
3030 "webpack-cli" : " ^5.1.4" ,
3131 "webpack-dev-server" : " ^5.0.4" ,
3232 "assert" : " ^2.1.0" ,
3333 "process" : " ^0.11.10" ,
3434 "npm-run-all" : " ^4.1.5" ,
35- "esbuild" : " ^0.21.4 " ,
35+ "esbuild" : " ^0.21.5 " ,
3636 "@esbuild-plugins/node-globals-polyfill" : " ^0.2.3"
3737 }
3838}
Original file line number Diff line number Diff line change 11// Place your settings in this file to overwrite default and user settings.
22{
33 "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
55 },
66 "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
88 },
99 // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1010 "typescript.tsc.autoDetect" : " off"
Original file line number Diff line number Diff line change 11// Place your settings in this file to overwrite default and user settings.
22{
33 "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
55 },
66 "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
88 },
99 // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1010 "typescript.tsc.autoDetect" : " off"
Original file line number Diff line number Diff line change 11{
22 "name" : " generator-code" ,
3- "version" : " 1.10.1 " ,
3+ "version" : " 1.11.0 " ,
44 "description" : " Yeoman generator for Visual Studio Code extensions." ,
55 "keywords" : [
66 " yeoman-generator" ,
2626 "url" : " https://github.com/Microsoft"
2727 },
2828 "engines" : {
29- "node" : " >=16.x "
29+ "node" : " ^18.17.0 || >=20.5.0 "
3030 },
3131 "scripts" : {
3232 "test" : " mocha" ,
4444 },
4545 "devDependencies" : {
4646 "@types/mocha" : " ^10.0.6" ,
47- "@types/node" : " ^16 .18.82 " ,
47+ "@types/node" : " ^18 .18.5 " ,
4848 "mocha" : " ^10.4.0" ,
49- "yeoman-environment" : " ^4.4.0 " ,
49+ "yeoman-environment" : " ^4.4.1 " ,
5050 "yeoman-test" : " ^8.3.0"
5151 }
5252}
You can’t perform that action at this time.
0 commit comments