sheetjs/demos/electron/Makefile

16 lines
223 B
Makefile
Raw Normal View History

.PHONY: init
init:
mkdir -p node_modules
cd node_modules; if [ ! -e xlsx ]; then ln -s ../../../ xlsx ; fi; cd -
.PHONY: lint
lint:
eslint *.js
.PHONY: run
run:
2022-04-14 07:27:38 +00:00
npm i
npx electron .
2022-06-27 05:47:58 +00:00
.PHONY: build
build:
npm run make