From 0de80580fe241400c3a90d3a2ff6674efaf7f524 Mon Sep 17 00:00:00 2001 From: Peter Donovan Date: Wed, 22 May 2024 21:19:58 -0700 Subject: [PATCH] Fix silly error from rebase --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fc27fbd74..b98547de1 100644 --- a/package.json +++ b/package.json @@ -190,7 +190,7 @@ "clean": "rimraf out && rimraf lib && rimraf vscode-lingua-franca-*.vsix", "transpile": "webpack", "vscode:prepublish": "npm run transpile", - "compile": "cd ./editor-support/lfwasm && bash make && cd ../.. && rm -rf ./lfw-pkg && move-cli ./editor-support/lfwasm/pkg ./lfw-pkg && ./write-version-to-file.sh src/extension_version.ts && npm run transpile", + "compile": "cd ./editor-support/lfwasm && make && cd ../.. && rm -rf ./lfw-pkg && move-cli ./editor-support/lfwasm/pkg ./lfw-pkg && ./write-version-to-file.sh src/extension_version.ts && npm run transpile", "watch": "npm run transpile --watch", "build": "npx ts-node src/build_lds.ts", "compile-tests": "npm run compile && npx tsc --lib \"dom\" --outDir out/test --inlineSourceMap",