source: trip-planner-front/node_modules/retry/Makefile@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 312 bytes
Line 
1SHELL := /bin/bash
2
3release-major: test
4 npm version major -m "Release %s"
5 git push
6 npm publish
7
8release-minor: test
9 npm version minor -m "Release %s"
10 git push
11 npm publish
12
13release-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.