diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index b891fd06b..fc10310fc 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -7,7 +7,6 @@ jobs: name: "Build WebAssembly" runs-on: ubuntu-22.04 - steps: steps: - name: 'Free up disk space' run: | diff --git a/package.json b/package.json index 353022ef8..732a92fa8 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "npm scripts to generate itk-wasm artifacts.", "type": "module", "scripts": { - "build": "npm run emscripten && npm run bindgen && npm run wasi && npm run bindgen:typescript", + "build": "npm run emscripten && npm run bindgen:typescript && npm run wasi", "emscripten": "npx itk-wasm -b emscripten-build -i itkwasm/emscripten:20230825-eb2bf097 build . -- -DTubeTK_USE_VTK:BOOL=OFF", "bindgen:typescript": "npx itk-wasm -b emscripten-build bindgen --output-dir wasm/typescript --package-name @itk-wasm/tubetk --package-description \"TubeTK is an open-source toolkit for the segmentation, registration, and analysis of tubes and surfaces in images, developed by Kitware, Inc.\" --repository 'https://github.com/InsightSoftwareConsortium/ITKTubeTK'", "wasi": "npx itk-wasm -b wasi-build -i itkwasm/wasi:20230825-eb2bf097 build . -- -DTubeTK_USE_VTK:BOOL=OFF",