UNPKG

compound-ex4

Version:

Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)

20 lines (14 loc) 318 B
SRC = $(shell find lib -name "*.js" -type f) UGLIFY_FLAGS = --no-mangle test: @./node_modules/.bin/expresso test/*.test.js ejs.js: $(SRC) @node support/compile.js $^ ejs.min.js: ejs.js @uglifyjs $(UGLIFY_FLAGS) $< > $@ \ && du ejs.min.js \ && du ejs.js clean: rm -f ejs.js rm -f ejs.min.js .PHONY: test