Codebase list node-jison / run/840765fa-748b-479f-84cd-a0750e97d125/main Makefile
run/840765fa-748b-479f-84cd-a0750e97d125/main

Tree @run/840765fa-748b-479f-84cd-a0750e97d125/main (Download .tar.gz)

Makefile @run/840765fa-748b-479f-84cd-a0750e97d125/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