Skip to content

Commit 0cbcd19

Browse files
Merge branch 'main' into searchbox
2 parents 186431f + d4500e6 commit 0cbcd19

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33

44
## Version 0.4.12
55

6-
- Release date: April 29, 2022
6+
- Release date: May 3, 2022
77

88
### Added
99

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-arduino",
33
"displayName": "Arduino",
44
"description": "Arduino for Visual Studio Code",
5-
"version": "0.4.12-rc",
5+
"version": "0.4.12",
66
"publisher": "vsciot-vscode",
77
"aiKey": "83dd2c27-6594-41d3-85a9-bdb22070eb42",
88
"preview": true,

webpack.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ function getEntry() {
1212
const mod = JSON.parse(npmListRes);
1313
const unbundledModule = ['impor', 'uuid',
1414
// usb-native modules can not be bundled
15-
'usb-detection', '@serialport', 'bindings', 'serialport'];
15+
// added debug, ms, node-gyp-build, and node-addon-api as a workaround a break in packaging
16+
// that caused the extension to not work.
17+
'usb-detection', '@serialport', 'bindings', 'serialport', 'debug', 'ms', 'node-gyp-build', 'node-addon-api'];
1618

1719
for (const mod of unbundledModule) {
1820
const p = 'node_modules/' + mod;

0 commit comments

Comments
 (0)