-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (24 loc) · 746 Bytes
/
Makefile
File metadata and controls
33 lines (24 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
RUST_LOG ?= debug
# -----------------------------------------------------------------------------
# Real targets
# -----------------------------------------------------------------------------
package-lock.json: package.json
npm install --package-lock-only
node_modules: package-lock.json
npm install --from-lockfile
touch node_modules
# -----------------------------------------------------------------------------
# Phony targets
# -----------------------------------------------------------------------------
.PHONY: clean
clean:
rm -rf esbuild-meta.json
rm -rf node_modules
rm -rf static
rm -rf target
esbuild: node_modules
node esbuild.mjs
watch: node_modules
./jarmuz-watch.mjs
release: node_modules
./jarmuz-release.mjs