-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix VS Code extension #467
Conversation
|
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/pikapkg/astro-www/A2D55aFKTkWcyYyJTyUE8AsPTf9E |
* chore: astro-languageserver => @astrojs/language-server * chore: astro-vscode => vscode * chore: move devDeps to deps * chore: bump language-server to 0.5.0-next.0 * chore: remove astro-docs * chore: update changelog * fix: expose `astro-ls` bin * fix: vscode extension * chore: update changelog
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Changes
These are a number of changes which fix the VS Code extension! The diff is mostly noisy renames, but I tracked it down to one main problem.
We need to use
npm@6
and runnpm install
inside oftools/vscode
before publishing. This ensures that the dependencies inside ofnode_modules
are packaged with the extensionTesting
vsce package
inside oftools/vscode
is great for testing the final output. You can right-click on the generated output file and click "Install Extension VSIX" to install the local extension version.Docs
Bug fix!