mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 06:18:09 +00:00

PR-URL: https://github.com/nodejs/node/pull/3299 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
23 lines
300 B
Makefile
23 lines
300 B
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
|
|
|