From a0f3c244c658f99b2c4ab92e324e4007ae3fd8b3 Mon Sep 17 00:00:00 2001 From: SheetJS Date: Fri, 27 Oct 2017 12:25:54 -0400 Subject: [PATCH] version bump 0.11.7: VFP DBF write - DBF writer (dBASE II + VFP extensions) - updated CFB to 0.13.2 - BIFF8 XLS write VBA --- native.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/native.sh b/native.sh index c903cbb..b4f642a 100755 --- a/native.sh +++ b/native.sh @@ -3,15 +3,19 @@ if [ ! -e SheetJS ]; then react-native init SheetJS cd SheetJS - npm i -S xlsx react react-native react-native-table-component react-native-fs + npm i -S xlsx react-native-table-component react-native-fs cd - fi if [ ! -e SheetJS/logo.png ]; then curl -O http://oss.sheetjs.com/assets/img/logo.png mv logo.png SheetJS/logo.png fi -cp react-native.js SheetJS/index.ios.js -cp react-native.js SheetJS/index.android.js +if [ -e SheetJS/index.ios.js ]; then + cp react-native.js SheetJS/index.ios.js + cp react-native.js SheetJS/index.android.js +else + cp react-native.js SheetJS/index.js +fi cd SheetJS; RNFB_ANDROID_PERMISSIONS=true react-native link cd -;