added makefile

This commit is contained in:
Geoff Doty 2024-05-04 21:14:01 -04:00
parent 72fc4f3be7
commit 49eb07d7dc
1 changed files with 7 additions and 0 deletions

7
makefile Normal file
View File

@ -0,0 +1,7 @@
build:
bunx rollup src/index.js --file dist/tagged.js --format esm
minify:
bunx terser dist/tagged.js -c -o dist/tagged.min.js --source-map url
all: build minify