diff options
author | 2021-08-11 20:42:31 +0000 | |
---|---|---|
committer | 2021-08-11 20:42:31 +0000 | |
commit | 3f093fa830f4f971423867915b0926ed909748a1 (patch) | |
tree | 6d70862313d2497d3170e12765b2244351a7e947 | |
parent | 6c6a33b987839c873f144c12931a2dcdc14d0304 (diff) | |
download | astro-3f093fa830f4f971423867915b0926ed909748a1.tar.gz astro-3f093fa830f4f971423867915b0926ed909748a1.tar.zst astro-3f093fa830f4f971423867915b0926ed909748a1.zip |
[ci] yarn format
Diffstat (limited to '')
-rw-r--r-- | tools/language-server/CHANGELOG.md | 2 | ||||
-rw-r--r-- | tools/vscode/CHANGELOG.md | 1 | ||||
-rw-r--r-- | tools/vscode/scripts/publish.mjs | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/tools/language-server/CHANGELOG.md b/tools/language-server/CHANGELOG.md index 825c52c5d..156c001a2 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 cc8de66af..246074aff 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 aaf0317eb..b66ab1aed 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 }); |