forked from sheetjs/sheetjs
SheetJS
75845a0ca7
- IE6-9 ActiveX + VBScript shim - `writeFile` supported in browser - `oldie` demo for IE write strategies
15 lines
274 B
Makefile
15 lines
274 B
Makefile
.PHONY: start
|
|
start:
|
|
@meteor
|
|
|
|
.PHONY: init
|
|
init:
|
|
if [ ! -e .meteor ]; then meteor create .; fi;
|
|
@npm install babel-runtime meteor-node-stubs
|
|
@meteor add check
|
|
@mkdir -p node_modules; cd node_modules; ln -s ../../../ xlsx; cd -
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
@meteor npm run lint
|