forked from SheetJS/sheetjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
XLS Unicode Property Lists [ci skip]
- Loading branch information
1 parent
a376a6c
commit b98a402
Showing
75 changed files
with
1,529 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ rhino | |
shim.min.js | ||
xlsx.*.js | ||
payload.js | ||
goja |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"extends": [ | ||
"eslint:recommended" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.*-ng* linguist-generated=true binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,6 @@ dist | |
hooks | ||
SheetJSIonic | ||
SheetJSNS | ||
angular.json | ||
tsconfig.app.json | ||
src/polyfills.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,38 @@ | ||
.PHONY: all | ||
all: angular5 | ||
|
||
.PHONY: angular2 angular4 angular5 | ||
angular2 angular4 angular5: | ||
cp package.json-$@ package.json | ||
.PHONY: ng2 ng4 ng5 ng6 ng7 ng8 ng9 ng10 ng11 ng12 | ||
ng2 ng4 ng5 ng6 ng7 ng8 ng9 ng10 ng11 ng12: | ||
rm -f angular.json tsconfig.app.json src/polyfills.ts | ||
cp versions/package.json-$@ package.json | ||
if [ -e versions/angular.json-$@ ]; then cp versions/angular.json-$@ angular.json; fi | ||
if [ -e versions/tsconfig.app.json-$@ ]; then cp versions/tsconfig.app.json-$@ tsconfig.app.json; fi | ||
if [ -e versions/polyfills.ts-$@ ]; then cp versions/polyfills.ts-$@ src/polyfills.ts; fi | ||
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: all | ||
all: | ||
for i in 2 4 5 6 7 8 9 10 11 12; do make ng$$i; done | ||
|
||
.PHONY: ionic | ||
ionic: | ||
bash ./ionic.sh | ||
|
||
.PHONY: ios android browser | ||
ios android browser: ionic | ||
ios browser: ionic | ||
cd SheetJSIonic; ionic cordova emulate $@ </dev/null; cd - | ||
android: ionic | ||
cd SheetJSIonic; ionic cordova prepare $@ </dev/null; ionic cordova emulate $@ </dev/null; cd - | ||
|
||
|
||
.PHONY: nativescript | ||
nativescript: | ||
bash ./nscript.sh | ||
|
||
.PHONY: ns-ios ns-android | ||
ns-ios: nativescript | ||
cd SheetJSNS; tns run ios; cd - | ||
cd SheetJSNS; ns run ios; cd - | ||
ns-android: nativescript | ||
cd SheetJSNS; tns run android; cd - | ||
cd SheetJSNS; ns run android; cd - | ||
|
Oops, something went wrong.