diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,12 +1,15 @@ -all: cargo +all: wasm cd www && \ npm install && \ npm run build -serve: cargo +serve: wasm cd www && \ npm install && \ npm run start -cargo: +wasm: wasm-pack build --no-typescript --release + +test: + wasm-pack test --headless --firefox |