forked from sheetjs/sheetjs
SheetJS
935821423f
- dist scripts properly export library - XLS/XLSB formulae quote sheet names containing spaces - skipHidden ported to streaming CSV write - updated codepage to 1.11.0 - flow and TS updates - webpack demo example using dist scripts - requirejs demo
11 lines
340 B
Makefile
11 lines
340 B
Makefile
TOOL=requirejs
|
|
.PHONY: all
|
|
all: $(TOOL).js
|
|
|
|
.PHONY: $(TOOL).js
|
|
$(TOOL).js:
|
|
if [ ! -e require.js ]; then curl -O http://requirejs.org/docs/release/2.3.3/comments/require.js; fi
|
|
if [ ! -e r.js ]; then curl -O http://requirejs.org/docs/release/2.3.3/r.js; fi
|
|
rm -f xlsx.full.min.js; ln -s ../../dist/xlsx.full.min.js
|
|
node r.js -o build.js
|