Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove wasm bindings #145

Merged
merged 2 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
members = [
"crates/*",
"bindings/uniffi",
"bindings/wasm",
]
default-members = [
"crates/*",
Expand Down
12 changes: 0 additions & 12 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,9 @@ lint: setup
cargo fmt

bind: setup
just bind-ts
just bind-kotlin
just bind-swift

bind-ts: setup
cargo build --release --package web5-wasm
if ! command -v wasm-pack &> /dev/null; then cargo install wasm-pack; fi
wasm-pack build --target nodejs --out-dir ../../binded/ts/pkg bindings/wasm
rm binded/LICENSE
rm binded/ts/pkg/.gitignore

bind-kotlin: setup
cargo build --release --package web5-uniffi
cargo run --package web5-uniffi \
Expand Down Expand Up @@ -58,13 +50,9 @@ bind-swift: setup
-output binded/swift/libweb5-rs.xcframework

test-binded: setup
just test-ts
just test-kotlin
just test-swift

test-ts: setup
cd binded/ts && npm i && npm test

test-kotlin: setup
cd binded/kt && mvn clean test

Expand Down
55 changes: 0 additions & 55 deletions binded/ts/.eslintrc.cjs

This file was deleted.

4 changes: 0 additions & 4 deletions binded/ts/jest.config.js

This file was deleted.

Loading
Loading