1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-06-13 05:29:24 -04:00

Add package.json, automate installing js packages

This commit is contained in:
2016-10-05 14:17:17 -04:00
parent 0829393918
commit 19932812e4
3 changed files with 61 additions and 7 deletions

View File

@ -2,10 +2,13 @@ JS_SOURCES = $(wildcard js/*.js) $(wildcard js/*/*.js)
all: static/bundle.js static/react-widgets
static/bundle.js: $(JS_SOURCES)
node_modules:
npm install
static/bundle.js: $(JS_SOURCES) node_modules
browserify -t [ babelify --presets [ react ] ] js/main.js -o static/bundle.js
static/react-widgets: node_modules/react-widgets/dist
static/react-widgets: node_modules/react-widgets/dist node_modules
rsync -a node_modules/react-widgets/dist/ static/react-widgets/
.PHONY = all