mirror of
https://github.com/mwilliamson/mammoth.js.git
synced 2024-12-08 15:14:29 +00:00
16 lines
351 B
Makefile
16 lines
351 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:
|
|
node_modules/.bin/browserify lib/index.js --standalone mammoth -p browserify-prepend-licenses > $@
|
|
|
|
mammoth.browser.min.js: mammoth.browser.js
|
|
node_modules/.bin/uglifyjs mammoth.browser.js -c > $@
|