diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,5 +1,23 @@ all: build pack +# Make alias to simplify building for Mozilla staff when reviewing extensions +mozaddons: + $(MAKE) deepclean + $(MAKE) bootstrap + pnpm i + $(MAKE) build + $(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 |