From 1bc81f5a3550238618a796f831b35a51cbed9ca0 Mon Sep 17 00:00:00 2001 From: Tony Giorgio Date: Mon, 10 Jun 2024 10:54:14 -0500 Subject: [PATCH] Flip just pack and just dev --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 417e41329..8fd38cc44 100644 --- a/justfile +++ b/justfile @@ -1,5 +1,5 @@ pack: - wasm-pack build ./mutiny-wasm --dev --weak-refs --target web --scope mutinywallet + wasm-pack build ./mutiny-wasm --weak-refs --target web --scope mutinywallet link: wasm-pack build ./mutiny-wasm --dev --weak-refs --target web --scope mutinywallet && cd mutiny-wasm/pkg && pnpm link --global @@ -8,7 +8,7 @@ login: wasm-pack login --scope=@mutinywallet dev: - wasm-pack build ./mutiny-wasm --weak-refs --target web --scope mutinywallet + wasm-pack build ./mutiny-wasm --dev --weak-refs --target web --scope mutinywallet release: wasm-pack build ./mutiny-wasm --release --weak-refs --target web --scope mutinywallet