From 9a9b328d132b230b162d914cce41722b2db983d5 Mon Sep 17 00:00:00 2001 From: Peter Donovan Date: Wed, 22 May 2024 14:36:40 -0700 Subject: [PATCH] Install wasm-pack --- .github/actions/build/action.yml | 3 +++ tsconfig.json | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 1b6d82c8d..1716872c4 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -32,6 +32,8 @@ runs: echo $JAVA_HOME working-directory: lingua-franca shell: bash + - name: Install the wasm-pack dev dependency globally + run: npm install -g wasm-pack - name: Build the VS Code extension run: npm install --ignore-scripts shell: bash @@ -67,6 +69,7 @@ runs: toolchain: stable components: clippy if: ${{ inputs.partial == 'false' }} + shell: bash - name: Install RTI run: | cd lingua-franca diff --git a/tsconfig.json b/tsconfig.json index cf94e778a..ecd15dd46 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,11 @@ { "compilerOptions": { - // "esModuleInterop": true, "inlineSources": false, "lib": [ "ES2022", "DOM" // hackily added to include wasm support ], "module": "Node16", - // "moduleResolution": "node", "outDir": "./out", "sourceMap": false, "target": "ES2022",