UNPKG

234 BPlain TextView Raw
1SHELL := /bin/bash
2
3test:
4 @mocha -R spec test.js
5
6hint:
7 @jshint ascii-table.js test.js package.json
8
9# UglifyJS v2
10min:
11 @echo -n ';' > ascii-table.min.js; uglifyjs ascii-table.js -o ascii-table.min.js -c -m;
12
13.PHONY: test hint min
\No newline at end of file