You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
PATH := ./node_modules/.bin:${PATH} |
|
|
|
NPM_PACKAGE := $(shell node -e 'console.log(require("./package.json").name)') |
|
NPM_VERSION := $(shell node -e 'console.log(require("./package.json").version)') |
|
|
|
TMP_PATH := /tmp/${NPM_PACKAGE}-$(shell date +%s) |
|
|
|
REMOTE_NAME ?= origin |
|
REMOTE_REPO ?= $(shell git config --get remote.${REMOTE_NAME}.url) |
|
|
|
CURR_HEAD := $(firstword $(shell git show-ref --hash HEAD | cut -b -6) master) |
|
GITHUB_PROJ := fontello/${NPM_PACKAGE} |
|
|
|
|
|
help: |
|
echo "make help - Print this help" |
|
echo "make lint - Lint sources with JSHint" |
|
echo "make test - Lint sources and run all tests" |
|
echo "make publish - Set new version tag and publish npm package" |
|
|
|
|
|
lint: |
|
eslint --reset . |
|
|
|
|
|
test: lint |
|
mocha test.js |
|
|
|
|
|
publish: |
|
@if test 0 -ne `git status --porcelain | wc -l` ; then \ |
|
echo "Unclean working tree. Commit or stash changes first." >&2 ; \ |
|
exit 128 ; \ |
|
fi |
|
@if test 0 -ne `git fetch ; git status | grep '^# Your branch' | wc -l` ; then \ |
|
echo "Local/Remote history differs. Please push/pull changes." >&2 ; \ |
|
exit 128 ; \ |
|
fi |
|
@if test 0 -ne `git tag -l ${NPM_VERSION} | wc -l` ; then \ |
|
echo "Tag ${NPM_VERSION} exists. Update package.json" >&2 ; \ |
|
exit 128 ; \ |
|
fi |
|
git tag ${NPM_VERSION} && git push origin ${NPM_VERSION} |
|
npm publish https://github.com/${GITHUB_PROJ}/tarball/${NPM_VERSION} |
|
|
|
|
|
.PHONY: publish lint test |
|
.SILENT: help lint test
|
|
|