sheetjs/demos/meteor/Makefile

15 lines
274 B
Makefile
Raw Normal View History

2017-05-24 22:52:35 +00:00
.PHONY: start
start:
@meteor
.PHONY: init
init:
2017-09-24 23:40:09 +00:00
if [ ! -e .meteor ]; then meteor create .; fi;
2017-05-24 22:52:35 +00:00
@npm install babel-runtime meteor-node-stubs
@meteor add check
2017-05-24 22:52:35 +00:00
@mkdir -p node_modules; cd node_modules; ln -s ../../../ xlsx; cd -
2017-09-24 23:40:09 +00:00
.PHONY: lint
lint:
@meteor npm run lint