Skip to content

Commit 70103e5

Browse files
committed
Updates package to 1.0.4
Also includes an adjustment to the npm dev script. VS Code was getting hung up waiting for parcel to close before showing the Extension Host window. `parcel` without the build command doesn't close itself and watches for changes to files to keep them up to date.
1 parent a49ced6 commit 70103e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "AutoIt",
44
"description": "AutoIt language extension for Visual Studio Code",
55
"icon": "img/ai_icon.png",
6-
"version": "1.0.3",
6+
"version": "1.0.4",
77
"publisher": "Damien",
88
"galleryBanner": {
99
"color": "#254768",
@@ -286,7 +286,7 @@
286286
"dependencies": {},
287287
"scripts": {
288288
"build": "parcel build src/extension.js --target node",
289-
"dev": "parcel src/extension.js --target node",
289+
"dev": "parcel build src/extension.js --target node --no-minify",
290290
"vscode:prepublish": "parcel build src/extension.js --target node"
291291
}
292292
}

0 commit comments

Comments
 (0)