7 lines
190 B
Makefile
7 lines
190 B
Makefile
DENO_BUNDLE=deno run --allow-read --allow-write --unstable bundle.ts --debug
|
|
build: *
|
|
mkdir -p dist
|
|
$(DENO_BUNDLE) core/core.plugin.json dist/core.plugin.json
|
|
|
|
entr:
|
|
ls core/* | entr make
|