File tree 4 files changed +417
-395
lines changed
4 files changed +417
-395
lines changed Original file line number Diff line number Diff line change
1
+ ## v1.1.2
2
+
3
+ - Remove explicit dependency on bundled cpptools
4
+
1
5
## v1.1.1
2
6
3
7
- Set activation event
Original file line number Diff line number Diff line change 17
17
"url" : " https://github.com/Alex079/vscode-avr-helper"
18
18
},
19
19
"publisher" : " Alex079" ,
20
- "version" : " 1.1.1 " ,
20
+ "version" : " 1.1.2 " ,
21
21
"engines" : {
22
- "vscode" : " ^1.47.2 "
22
+ "vscode" : " ^1.47.3 "
23
23
},
24
24
"categories" : [
25
25
" Other"
132
132
"build" : " webpack --config webpack.dev" ,
133
133
"watch" : " webpack --config webpack.dev --watch" ,
134
134
"lint" : " eslint --ext .ts --fix src src" ,
135
- "clean" : " rm -rf dist" ,
135
+ "clean" : " rm -rf dist *.vsix " ,
136
136
"test" : " node dist/test/wrapper" ,
137
137
"verify" : " yarn lint && yarn clean && yarn build && yarn test" ,
138
138
"vscode:prepublish" : " yarn clean && yarn dist"
139
139
},
140
140
"devDependencies" : {
141
141
"@types/chai" : " ^4" ,
142
142
"@types/glob" : " ^7" ,
143
- "@types/mocha" : " ^7 " ,
143
+ "@types/mocha" : " ^8 " ,
144
144
"@types/node" : " ^13" ,
145
145
"@types/vscode" : " ^1" ,
146
- "@typescript-eslint/eslint-plugin" : " ^2 " ,
147
- "@typescript-eslint/parser" : " ^2 " ,
146
+ "@typescript-eslint/eslint-plugin" : " ^3 " ,
147
+ "@typescript-eslint/parser" : " ^3 " ,
148
148
"chai" : " ^4" ,
149
- "eslint" : " ^6 " ,
149
+ "eslint" : " ^7 " ,
150
150
"glob" : " ^7" ,
151
- "mocha" : " ^7 " ,
152
- "ts-loader" : " ^7 " ,
151
+ "mocha" : " ^8 " ,
152
+ "ts-loader" : " ^8 " ,
153
153
"typescript" : " ^3" ,
154
154
"vscode-test" : " ^1" ,
155
155
"webpack" : " ^4" ,
156
156
"webpack-cli" : " ^3" ,
157
- "webpack-merge" : " ^4" ,
158
- "webpack-node-externals" : " ^1"
159
- },
160
- "extensionDependencies" : [
161
- " ms-vscode.cpptools"
162
- ]
157
+ "webpack-merge" : " ^5" ,
158
+ "webpack-node-externals" : " ^2"
159
+ }
163
160
}
Original file line number Diff line number Diff line change 2
2
3
3
'use strict' ;
4
4
5
- module . exports = require ( 'webpack-merge' ) ( require ( './webpack.config' ) ,
5
+ module . exports = require ( 'webpack-merge' ) . merge ( require ( './webpack.config' ) ,
6
6
/**@type {import('webpack').Configuration }*/
7
7
{
8
8
mode : "development" ,
You can’t perform that action at this time.
0 commit comments