From be1a28e4c7a665d00d521996bbf54afda87099b6 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Thu, 2 Nov 2023 20:01:55 +0100 Subject: [PATCH] Update to the latest elm npm package --- package.json | 2 +- src/features/error-highlighting.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f56bf24..e1adeb1 100644 --- a/package.json +++ b/package.json @@ -147,7 +147,7 @@ "referencesProvider": "true" }, "dependencies": { - "elm": "0.19.1-5", + "elm": "0.19.1-6", "elm-format": "0.8.7" }, "devDependencies": { diff --git a/src/features/error-highlighting.ts b/src/features/error-highlighting.ts index ec1e3c5..b31c9b9 100644 --- a/src/features/error-highlighting.ts +++ b/src/features/error-highlighting.ts @@ -14,7 +14,7 @@ export const feature: Feature = ({ globalState, context }) => { context.subscriptions.push( vscode.commands.registerCommand('elmLand.installElm', () => { const terminal = vscode.window.createTerminal(`Install elm`) - terminal.sendText(`npm install -g elm@0.19.1`) + terminal.sendText(`npm install -g elm@0.19.1-6`) terminal.show() }) )