Files
IronCalc/bindings/wasm/Makefile
Nicolás Hatcher Andrés 489027991c UPDATE: Adds Web browser wasm bindings (#30)
* UPDATE: Adds Web browser wasm bindings

* FIX: install wasm-pack in the GitHub actions
2024-04-07 12:41:33 +02:00

14 lines
238 B
Makefile

all:
wasm-pack build --target web --scope ironcalc
cp README.pkg.md pkg/README.md
lint:
cargo check
cargo fmt -- --check
cargo clippy --all-targets --all-features -- -D warnings
clean:
cargo clean
rm -rf pkg
.PHONY: all web lint