mirror of
https://github.com/mwilliamson/mammoth.js.git
synced 2024-12-08 15:14:29 +00:00
18 lines
403 B
Makefile
18 lines
403 B
Makefile
.PHONY: test mammoth.browser.js npm-install
|
|
|
|
test:
|
|
npm test
|
|
|
|
setup: npm-install mammoth.browser.min.js
|
|
|
|
npm-install:
|
|
npm install
|
|
|
|
mammoth.browser.js:
|
|
-rm $@ -f
|
|
node_modules/.bin/node-license-sniffer . --recurse --js-comment >> $@
|
|
node_modules/.bin/browserify lib/index.js --standalone mammoth >> $@
|
|
|
|
mammoth.browser.min.js: mammoth.browser.js
|
|
node_modules/.bin/uglifyjs mammoth.browser.js -c > $@
|