]> gerrit.simantics Code Review - simantics/district.git/blob - Makefile
eee21a99dfc9ecc6c52da8227c3a30aa89a7ff58
[simantics/district.git] / Makefile
1 SHELL := /bin/bash
2
3 test:
4         @node test/runner.js
5
6 release-major: test
7         npm version major -m "Release %s"
8         git push
9         npm publish
10
11 release-minor: test
12         npm version minor -m "Release %s"
13         git push
14         npm publish
15
16 release-patch: test
17         npm version patch -m "Release %s"
18         git push
19         npm publish
20
21 .PHONY: test
22