Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
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.
88 lines
2.5 KiB
88 lines
2.5 KiB
10 years ago
|
PATH := ./node_modules/.bin:${PATH}
|
||
|
|
||
|
NPM_PACKAGE := $(shell node -e 'process.stdout.write(require("./package.json").name)')
|
||
|
NPM_VERSION := $(shell node -e 'process.stdout.write(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 := https://github.com//jonschlinkert/${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 browserify - Build browserified version"
|
||
|
echo "make dev-deps - Install developer dependencies"
|
||
|
echo "make gh-pages - Build and push API docs into gh-pages branch"
|
||
|
echo "make publish - Set new version tag and publish npm package"
|
||
|
echo "make todo - Find and list all TODOs"
|
||
|
|
||
|
|
||
|
lint:
|
||
|
jshint . --show-non-errors
|
||
|
|
||
|
|
||
|
test: lint
|
||
|
# NODE_ENV=test mocha -R spec
|
||
|
|
||
|
|
||
|
gh-pages:
|
||
|
@if test -z ${REMOTE_REPO} ; then \
|
||
|
echo 'Remote repo URL not found' >&2 ; \
|
||
|
exit 128 ; \
|
||
|
fi
|
||
|
mkdir ${TMP_PATH}
|
||
|
cp -r demo/* ${TMP_PATH}
|
||
|
touch ${TMP_PATH}/.nojekyll
|
||
|
cd ${TMP_PATH} && \
|
||
|
git init && \
|
||
|
git add . && \
|
||
|
git commit -q -m 'Updated browserified demo'
|
||
|
cd ${TMP_PATH} && \
|
||
|
git remote add remote ${REMOTE_REPO} && \
|
||
|
git push --force remote +master:gh-pages
|
||
|
rm -rf ${TMP_PATH}
|
||
|
|
||
|
|
||
|
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 ${GITHUB_PROJ}/tarball/${NPM_VERSION}
|
||
|
|
||
|
|
||
|
browserify:
|
||
|
rm -rf ./dist
|
||
|
mkdir dist
|
||
|
# Browserify
|
||
|
( echo -n "/* ${NPM_PACKAGE} ${NPM_VERSION} ${GITHUB_PROJ} */" ; \
|
||
|
browserify -r ./ -s Remarkable \
|
||
|
) > dist/remarkable.js
|
||
|
# Minify
|
||
|
uglifyjs dist/remarkable.js -c -m \
|
||
|
--preamble "/* ${NPM_PACKAGE} ${NPM_VERSION} ${GITHUB_PROJ} */" \
|
||
|
> dist/remarkable.min.js
|
||
|
|
||
|
|
||
|
todo:
|
||
|
grep 'TODO' -n -r ./lib 2>/dev/null || test true
|
||
|
|
||
|
|
||
|
.PHONY: publish lint test dev-deps gh-pages todo
|
||
|
.SILENT: help lint test todo
|