Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
312 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | SHELL := /bin/bash
|
---|
| 2 |
|
---|
| 3 | release-major: test
|
---|
| 4 | npm version major -m "Release %s"
|
---|
| 5 | git push
|
---|
| 6 | npm publish
|
---|
| 7 |
|
---|
| 8 | release-minor: test
|
---|
| 9 | npm version minor -m "Release %s"
|
---|
| 10 | git push
|
---|
| 11 | npm publish
|
---|
| 12 |
|
---|
| 13 | release-patch: test
|
---|
| 14 | npm version patch -m "Release %s"
|
---|
| 15 | git push
|
---|
| 16 | npm publish
|
---|
| 17 |
|
---|
| 18 | .PHONY: test release-major release-minor release-patch
|
---|
Note:
See
TracBrowser
for help on using the repository browser.