20 lines
219 B
Makefile
20 lines
219 B
Makefile
all: format build
|
|
|
|
build-docker:
|
|
docker build -t screeps-node .
|
|
|
|
build:
|
|
tools/npm run build
|
|
|
|
format:
|
|
tools/npm run format
|
|
|
|
test:
|
|
tools/npm run test
|
|
|
|
coverage:
|
|
tools/npm run coverage
|
|
|
|
push:
|
|
tools/npm run push-main
|