19 lines
No EOL
313 B
Makefile
19 lines
No EOL
313 B
Makefile
.PHONY: build dev prod test
|
|
|
|
build:
|
|
tsc
|
|
|
|
dev: build
|
|
NODE_ENV=development node dist/main.js
|
|
|
|
prod: build
|
|
NODE_ENV=production node dist/main.js
|
|
|
|
rund:
|
|
NODE_ENV=development node dist/main.js
|
|
|
|
run:
|
|
NODE_ENV=production node dist/main.js
|
|
|
|
test:
|
|
node_modules/mocha/bin/_mocha -r ts-node/register tests/**/*.spec.ts
|