Skip to content

Commit

Permalink
CI (js_api.yml): Fix wasm-pack build
Browse files Browse the repository at this point in the history
Add `--dev` to `wasm-pack build`. This is needed, because of
rustwasm/wasm-pack#886.
  • Loading branch information
Urhengulas committed Aug 1, 2020
1 parent c200bc2 commit 03d46ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/js_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:
- name: Build
if: matrix.conf == 'build'
working-directory: rav1e_js
run: wasm-pack build
# --dev needed, because of https://github.com/rustwasm/wasm-pack/issues/886
run: wasm-pack build --dev

- name: Pack
if: matrix.conf == 'build'
Expand Down

0 comments on commit 03d46ea

Please sign in to comment.