diff --git a/tools/language-server/CHANGELOG.md b/tools/language-server/CHANGELOG.md index 825c52c5d8..156c001a21 100644 --- a/tools/language-server/CHANGELOG.md +++ b/tools/language-server/CHANGELOG.md @@ -3,7 +3,7 @@ ## 0.6.0 - Fixes bug with signature help not appear in the component script section. -- Adds completion suggestions for Astro.* APIs in the component script. +- Adds completion suggestions for Astro.\* APIs in the component script. - Adds support for Hover based hints in the component script section. - Fixes bug with Go to Definition (cmd + click) of Components. diff --git a/tools/vscode/CHANGELOG.md b/tools/vscode/CHANGELOG.md index cc8de66af6..246074affd 100644 --- a/tools/vscode/CHANGELOG.md +++ b/tools/vscode/CHANGELOG.md @@ -1,6 +1,7 @@ # astro-vscode ## 0.6.1 + - Makes the v0.6.0 features actually work 😅 ## 0.6.0 diff --git a/tools/vscode/scripts/publish.mjs b/tools/vscode/scripts/publish.mjs index aaf0317eb3..b66ab1aed5 100644 --- a/tools/vscode/scripts/publish.mjs +++ b/tools/vscode/scripts/publish.mjs @@ -18,7 +18,7 @@ async function publish() { } } - execa('npm', ['install'], { all: true }) + execa('npm', ['install'], { all: true }); const p1 = execa('vsce', ['publish'], { all: true });