mirror of
https://github.com/sstent/node_app.git
synced 2026-01-26 15:13:02 +00:00
15 lines
129 B
Makefile
15 lines
129 B
Makefile
SHELL := /bin/bash
|
|
|
|
test:
|
|
@./test/run.js
|
|
|
|
build: npm test
|
|
|
|
npm:
|
|
npm install .
|
|
|
|
clean:
|
|
rm test/tmp/*
|
|
|
|
.PHONY: test clean build
|