AlkantarClanX12

Your IP : 3.133.140.88


Current Path : /proc/self/root/opt/alt/alt-nodejs9/root/usr/lib/node_modules/npm/node_modules/retry/
Upload File :
Current File : //proc/self/root/opt/alt/alt-nodejs9/root/usr/lib/node_modules/npm/node_modules/retry/Makefile

SHELL := /bin/bash

test:
	@node test/runner.js

release-major: test
	npm version major -m "Release %s"
	git push
	npm publish

release-minor: test
	npm version minor -m "Release %s"
	git push
	npm publish

release-patch: test
	npm version patch -m "Release %s"
	git push
	npm publish

.PHONY: test