tag-it
Version:
A jQuery UI plugin to handle multi-tag fields as well as tag suggestions/autocomplete.
18 lines (13 loc) • 478 B
Plain Text
JS=./js/tag-it.js
MINIFIED_OUTPUT=./js/tag-it.min.js
build:
@echo
@echo "Compiling JS..."
@curl --progress-bar -f -d compilation_level=SIMPLE_OPTIMIZATIONS -d output_format=text -d output_info=compiled_code --data-urlencode "js_code@${JS}" https://closure-compiler.appspot.com/compile -o ${MINIFIED_OUTPUT}
gh-pages:
@echo "Updating GitHub pages..."
@if git checkout gh-pages -q; then \
git merge master -Xtheirs && \
git checkout master -q; \
fi
.PHONY: gh-pages