blob: f28fd57e3cbf0c5d1a0d5b10d7dfe083ce753384 (
plain) (
blame)
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
|
all: build pack
# Make alias to simplify building for Mozilla staff when reviewing extensions
mozaddons:
$(MAKE) deepclean
$(MAKE) bootstrap
pnpm i
$(MAKE) build-reproducible
contrib/strip-srcmap.sh
$(MAKE) pack
clean:
rm -rf build static/generated .svelte-kit artifacts
deepclean: clean
rm -rf node_modules
rm static/manifest.json || true
ln -s ../manifest.json static/manifest.json
bootstrap:
./bootstrap
build:
pnpm build
build-reproducible:
pnpm build-reproducible
pack:
contrib/pack
|