forked from sheetjs/sheetjs
SheetJS
5de62a947f
- add BOM to `stream.to_csv` (fixes #1024 h/t @hr5959) - `utils.format_cell` type (h/t @victorj2307) - duktape niggles - demo cleanup
14 lines
180 B
Makefile
14 lines
180 B
Makefile
.PHONY: all
|
|
all:
|
|
@npm run build
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
@npm run lint
|
|
|
|
.PHONY: init
|
|
init:
|
|
mkdir -p node_modules
|
|
npm install typescript
|
|
cd node_modules; ln -s ../../../ xlsx; cd -
|