Makefile 108 B

1234567891011
  1. SHELL := /bin/bash
  2. test:
  3. @./test/run.js
  4. release:
  5. git push
  6. git push --tags
  7. npm publish .
  8. .PHONY: test