mirror of
https://github.com/yldio/copilot.git
synced 2024-12-01 07:30:07 +02:00
12 lines
179 B
Makefile
12 lines
179 B
Makefile
.PHONY: test
|
|
test:
|
|
npm run test
|
|
|
|
.PHONY: install
|
|
install:
|
|
npm install --quiet --no-spin
|
|
|
|
.PHONY: compile
|
|
compile: install
|
|
NODE_ENV=production webpack --config webpack/index.js
|