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
|
2018-02-03 20:46:32 +00:00
|
|
|
@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:
|
2018-02-03 20:46:32 +00:00
|
|
|
@meteor npm run lint
|