11 lines
112 B
Makefile
11 lines
112 B
Makefile
node_modules:
|
|
npm install
|
|
|
|
.PHONY: build
|
|
build:
|
|
npm run-script build
|
|
|
|
.PHONY: start
|
|
start:
|
|
node dist/main.js
|