emmet: Use index.js
directly to launch language server (#36126)
This PR updates the Emmet extension to use the `index.js` file directly to launch the language server. This provides better cross-platform support, as we're not relying on platform-specific `.bin` wrappers. Release Notes: - N/A
This commit is contained in:
parent
d9a94a5496
commit
2da80e4641
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ struct EmmetExtension {
|
|||
did_find_server: bool,
|
||||
}
|
||||
|
||||
const SERVER_PATH: &str = "node_modules/.bin/emmet-language-server";
|
||||
const SERVER_PATH: &str = "node_modules/@olrtg/emmet-language-server/dist/index.js";
|
||||
const PACKAGE_NAME: &str = "@olrtg/emmet-language-server";
|
||||
|
||||
impl EmmetExtension {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue