forked from sheetjs/sheetjs
The optional ODS module has been completely merged into xlsx.js and the corresponding scripts have been removed. The new xlsx.js file provides appropriate ODS exports, so fixing is a matter of removing ods.js refs.
11 lines
189 B
Makefile
11 lines
189 B
Makefile
TOOL=webpack
|
|
.PHONY: all
|
|
all: $(TOOL).min.js
|
|
|
|
$(TOOL).min.js: $(TOOL).js
|
|
uglifyjs $< > $@
|
|
|
|
.PHONY: $(TOOL).js
|
|
$(TOOL).js:
|
|
webpack main.js --output-filename $@ --display-modules --profile
|