mirror of
https://github.com/jlengrand/elm-language-client-vscode.git
synced 2026-03-10 08:11:17 +00:00
Use nullish coalescing operator
This commit is contained in:
@@ -9,7 +9,6 @@
|
|||||||
- Fix files without module declaration not getting added to our index
|
- Fix files without module declaration not getting added to our index
|
||||||
- Fix rename devouring Module prefixes
|
- Fix rename devouring Module prefixes
|
||||||
|
|
||||||
|
|
||||||
## 0.7.3
|
## 0.7.3
|
||||||
|
|
||||||
- Fix a case of wrong highlighting
|
- Fix a case of wrong highlighting
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ function getInstallPackageCommand(packageToInstall: string): string {
|
|||||||
"elmLS",
|
"elmLS",
|
||||||
);
|
);
|
||||||
let t: string = config.get("elmPath") as string;
|
let t: string = config.get("elmPath") as string;
|
||||||
t = t || "elm";
|
t = t ?? "elm";
|
||||||
|
|
||||||
return t + " install " + packageToInstall;
|
return t + " install " + packageToInstall;
|
||||||
}
|
}
|
||||||
|
|||||||
2
server
2
server
Submodule server updated: fbc9cbd6fa...b828527acf
Reference in New Issue
Block a user