forked from sheetjs/sheetjs
SheetJS
5b67ac0806
- dollar currencies and percentages properly detected as numbers - parse potential CDATA segments in XLSX (fixes #775 h/t @awb99) - IE8 issues with regex - altjs demos Issues: - fixes #673 h/t @huhm - fixes #748 h/t @sangpuion - fixes #749 h/t @GreggOD - fixes #772 h/t @sangpuion @jyyan
16 lines
364 B
Makefile
16 lines
364 B
Makefile
.PHONY: all
|
|
all: duktape nashorn
|
|
|
|
.PHONY: base
|
|
base:
|
|
if [ ! -e sheetjs.xlsx ]; then node ../../tests/write.js; fi
|
|
|
|
.PHONY: duktape
|
|
duktape: base ## duktape / skookum demo
|
|
sjs skookum.js
|
|
|
|
.PHONY: nashorn
|
|
nashorn: base ## nashorn demo
|
|
if [ ! -e jvm-npm.js ]; then curl -O https://rawgit.com/nodyn/jvm-npm/master/src/main/javascript/jvm-npm.js; fi
|
|
jjs nashorn.js
|