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

Reorganization around building JavaScript differently

This commit is contained in:
2016-02-13 17:02:22 -05:00
parent d6ddf0f65f
commit c5bca50113
14 changed files with 13 additions and 6 deletions

11
Makefile Normal file
View File

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