From 3de350d3e9bad8482b710707eead0ac4944f955e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Wed, 16 Feb 2022 12:47:23 +0100 Subject: [PATCH] Remove wasm snippets from release builds --- build_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_release.py b/build_release.py index 137b94a..bd555a1 100755 --- a/build_release.py +++ b/build_release.py @@ -11,7 +11,7 @@ wasm_pack = Path("~/.cargo/bin/wasm-pack").expanduser() root_files = ["module.json", "README.md", "CHANGELOG.md", "LICENSE"] wasm_files = ["gridless_pathfinding_bg.wasm", "gridless_pathfinding.js"] output_dir = Path("artifact") -copy_everything_directories = ["js", "lang", "templates", "wasm/snippets"] +copy_everything_directories = ["js", "lang", "templates"] wasm_dir = Path("wasm") root_dir = Path(".") rust_dir = Path("rust")