Codebase list node-jison / a4494775-e36d-4da1-bf9f-548ce58f2698/main Makefile
a4494775-e36d-4da1-bf9f-548ce58f2698/main

Tree @a4494775-e36d-4da1-bf9f-548ce58f2698/main (Download .tar.gz)

Makefile @a4494775-e36d-4da1-bf9f-548ce58f2698/mainraw · history · blame

all: test

site:
	./node_modules/.bin/browserify entry.js --exports require | ./node_modules/.bin/uglifyjs > web/content/assets/js/jison.js
	cd web/ && nanoc compile
	cp -r examples web/output/jison/

preview:
	cd web/ && nanoc view &
	open http://localhost:3000/jison/

deploy:
	rm -r ../pages/jison/*
	cp -r web/output/jison/* ../pages/jison/
	cd ../pages/jison && git add . && git commit -m 'Deploy site updates' && git push origin gh-pages

test:
	node tests/all-tests.js