From 52424edc4ef8e78801b61a0d816a8eaa9eb300c7 Mon Sep 17 00:00:00 2001 From: Esteban Borai Date: Sun, 21 May 2023 14:46:31 -0400 Subject: [PATCH] feat: use `--target no-modules` --- Cargo.toml | 2 +- Justfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d4ef9b3..c8c651b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mince" -version = "0.0.2" +version = "0.0.3" authors = ["Esteban Borai "] edition = "2021" diff --git a/Justfile b/Justfile index a586e6e..22d788a 100644 --- a/Justfile +++ b/Justfile @@ -2,7 +2,7 @@ clean: rm -rf ./pkg build: clean - wasm-pack build --release --scope whizzes + wasm-pack build --release --scope whizzes --target no-modules dev: clean wasm-pack build --target web --dev