chore: Fix air-beautify-wasm name (#522)

* Add wasm32-unknown-unknown to toolchains

* Fix air-beautify-wasm name
This commit is contained in:
Anatolios Laskaris 2023-03-15 17:13:32 +02:00 committed by GitHub
parent 7aa5d4bef5
commit 459d2cf13a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -287,6 +287,10 @@ jobs:
node-version: "16"
registry-url: "https://registry.npmjs.org"
- name: Rename package
run: sed -i -e "s/air-beautify-wasm/@fluencelabs\/air-beautify-wasm/" package.json
working-directory: tools/wasm/air-beautify-wasm/pkg
- name: Publish to npm registry
run: npm publish --access public
working-directory: tools/wasm/air-beautify-wasm/pkg

View File

@ -2,5 +2,5 @@
# AquaVM can be built with "stable", "nightly" required only to build Marine tests
channel = "nightly-2022-11-01"
components = [ "rustfmt", "clippy", "rust-src" ]
targets = [ "x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "wasm32-wasi" ]
targets = [ "x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "wasm32-wasi", "wasm32-unknown-unknown" ]
profile = "minimal"