Files
IronCalc/bindings/wasm/Makefile
Nicolás Hatcher a71eaf1dd7 UPDATE: Adds web app
2024-04-13 16:22:07 +02:00

21 lines
398 B
Makefile

all:
wasm-pack build --target web --scope ironcalc --release
cp README.pkg.md pkg/README.md
tsc types.ts --target esnext --module esnext
python fix_types.py
tests:
wasm-pack build --target nodejs && node tests/test.mjs
lint:
cargo check
cargo fmt -- --check
cargo clippy --all-targets --all-features -- -D warnings
clean:
cargo clean
rm -rf pkg
rm -f types.js
.PHONY: all lint clean