mirror of
https://github.com/demostf/demo.js
synced 2026-06-04 00:54:14 +02:00
15 lines
202 B
Makefile
15 lines
202 B
Makefile
tsc=node_modules/.bin/tsc
|
|
|
|
.PHONY: all
|
|
all: build
|
|
|
|
node_modules: package.json
|
|
npm install --deps
|
|
|
|
.PHONY: watch
|
|
watch: node_modules
|
|
node $(tsc) --watch
|
|
|
|
.PHONY: build
|
|
build: node_modules
|
|
node $(tsc)
|