forked from sheetjs/sheetjs
9 lines
145 B
Makefile
9 lines
145 B
Makefile
|
.PHONY: init
|
||
|
init:
|
||
|
mkdir -p node_modules
|
||
|
cd node_modules; if [ ! -e xlsx ]; then ln -s ../../../ xlsx ; fi; cd -
|
||
|
|
||
|
.PHONY: run
|
||
|
run:
|
||
|
electron .
|