We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a8392d commit 8b55886Copy full SHA for 8b55886
Makefile
@@ -14,3 +14,11 @@ web-dev: wasm
14
.PHONY: web-lint
15
web-lint:
16
cd web && pnpm check
17
+
18
+.PHONY: web-build-dist
19
+web-build-dist: wasm
20
+ cd web && pnpm build
21
22
23
+web-serve-dist: web-build-dist
24
+ cd web/dist && ln -sf . typing-rust-patterns && python -m http.server
web/.gitignore
@@ -1,2 +1,3 @@
1
-/node_modules/
2
/.astro
+/node_modules/
3
+/dist
0 commit comments