forked from sheetjs/sheetjs
SheetJS
8508ad4e94
- correct BIFF-dependent cell reference wrapping - record layout fixes from sample files - use BIFF version 2.4.338 for BOF (fixes #995 h/t @benjaminleetmaa) - fixed potentially vulnerable regexes (h/t @davisjam) - removed insecure deep dependency (fixes #996 h/t @dcatoday)
21 lines
468 B
Makefile
21 lines
468 B
Makefile
.PHONY: all
|
|
all: angular5
|
|
|
|
.PHONY: angular2 angular4 angular5
|
|
angular2 angular4 angular5:
|
|
cp package.json-$@ package.json
|
|
rm -rf node_modules
|
|
npm install
|
|
if [ ! -e node_modules ]; then mkdir node_modules; fi
|
|
if [ ! -e node_modules/xlsx ]; then cd node_modules; ln -s ../../../ xlsx; cd -; fi
|
|
npm run build
|
|
|
|
.PHONY: ionic
|
|
ionic:
|
|
bash ./ionic.sh
|
|
|
|
.PHONY: ios android browser
|
|
ios android browser: ionic
|
|
cd SheetJSIonic; ionic cordova emulate $@ </dev/null; cd -
|
|
|