diff options
Diffstat (limited to 'tools/vscode')
-rw-r--r-- | tools/vscode/CHANGELOG.md | 3 | ||||
-rw-r--r-- | tools/vscode/package.json | 2 | ||||
-rw-r--r-- | tools/vscode/scripts/publish.mjs | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/tools/vscode/CHANGELOG.md b/tools/vscode/CHANGELOG.md index af611e15f..cc8de66af 100644 --- a/tools/vscode/CHANGELOG.md +++ b/tools/vscode/CHANGELOG.md @@ -1,5 +1,8 @@ # astro-vscode +## 0.6.1 +- Makes the v0.6.0 features actually work 😅 + ## 0.6.0 - Fixes bug with signature help not appearing in the component script section. diff --git a/tools/vscode/package.json b/tools/vscode/package.json index 4c6c3378e..cded25963 100644 --- a/tools/vscode/package.json +++ b/tools/vscode/package.json @@ -8,7 +8,7 @@ "color": "#FFBE2D", "theme": "dark" }, - "version": "0.6.0", + "version": "0.6.1", "author": "Astro", "license": "MIT", "publisher": "astro-build", diff --git a/tools/vscode/scripts/publish.mjs b/tools/vscode/scripts/publish.mjs index 93a36e804..7de209a6b 100644 --- a/tools/vscode/scripts/publish.mjs +++ b/tools/vscode/scripts/publish.mjs @@ -18,9 +18,7 @@ async function publish() { } } - await execa('npm', ['install']); - - const p1 = execa('vsce', ['publish'], { all: true }); + const p1 = execa('vsce', ['package'], { all: true }); p1.all.setEncoding('utf8'); for await (const chunk of p1.all) { |