Skip to content

Commit

Permalink
Updates package to 1.0.4
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
loganch committed Jan 11, 2020
1 parent a49ced6 commit 70103e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "AutoIt",
"description": "AutoIt language extension for Visual Studio Code",
"icon": "img/ai_icon.png",
"version": "1.0.3",
"version": "1.0.4",
"publisher": "Damien",
"galleryBanner": {
"color": "#254768",
Expand Down Expand Up @@ -286,7 +286,7 @@
"dependencies": {},
"scripts": {
"build": "parcel build src/extension.js --target node",
"dev": "parcel src/extension.js --target node",
"dev": "parcel build src/extension.js --target node --no-minify",
"vscode:prepublish": "parcel build src/extension.js --target node"
}
}

0 comments on commit 70103e5

Please sign in to comment.