mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-09 23:58:32 -05:00
12 lines
108 B
Makefile
12 lines
108 B
Makefile
SHELL := /bin/bash
|
|
|
|
test:
|
|
@./test/run.js
|
|
|
|
release:
|
|
git push
|
|
git push --tags
|
|
npm publish .
|
|
|
|
.PHONY: test
|