2017-02-24 05:11:45 +00:00
|
|
|
SHELL=/bin/bash
|
2014-05-20 17:43:03 +00:00
|
|
|
LIB=cfb
|
2014-11-03 04:02:42 +00:00
|
|
|
FMT=xls doc ppt misc full
|
|
|
|
REQS=
|
|
|
|
ADDONS=
|
|
|
|
AUXTARGETS=xlscfb.js
|
2020-07-09 06:12:05 +00:00
|
|
|
CMDS=packages/cfb-cli/bin/cfb.njs
|
2017-02-24 05:11:45 +00:00
|
|
|
HTMLLINT=index.html
|
2014-11-03 04:02:42 +00:00
|
|
|
|
|
|
|
ULIB=$(shell echo $(LIB) | tr a-z A-Z)
|
2014-06-24 04:00:39 +00:00
|
|
|
DEPS=$(sort $(wildcard bits/*.js))
|
2014-05-20 17:43:03 +00:00
|
|
|
TARGET=$(LIB).js
|
2017-02-24 05:11:45 +00:00
|
|
|
FLOWTARGET=$(LIB).flow.js
|
|
|
|
FLOWTGTS=$(TARGET) $(AUXTARGETS)
|
2017-09-14 21:14:22 +00:00
|
|
|
UGLIFYOPTS=--support-ie8 -m
|
2017-03-30 21:34:37 +00:00
|
|
|
CLOSURE=/usr/local/lib/node_modules/google-closure-compiler/compiler.jar
|
2017-02-24 05:11:45 +00:00
|
|
|
|
|
|
|
## Main Targets
|
2013-11-26 15:56:58 +00:00
|
|
|
|
2014-11-03 04:02:42 +00:00
|
|
|
.PHONY: all
|
2017-02-24 05:11:45 +00:00
|
|
|
all: $(TARGET) $(AUXTARGETS) ## Build library and auxiliary scripts
|
|
|
|
|
|
|
|
$(FLOWTGTS): %.js : %.flow.js
|
|
|
|
node -e 'process.stdout.write(require("fs").readFileSync("$<","utf8").replace(/^[ \t]*\/\*[:#][^*]*\*\/\s*(\n)?/gm,"").replace(/\/\*[:#][^*]*\*\//gm,""))' > $@
|
2014-11-03 04:02:42 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
$(FLOWTARGET): $(DEPS)
|
2014-06-24 04:00:39 +00:00
|
|
|
cat $^ | tr -d '\15\32' > $@
|
2013-11-26 15:56:58 +00:00
|
|
|
|
2014-05-20 17:43:03 +00:00
|
|
|
bits/31_version.js: package.json
|
2014-06-24 04:00:39 +00:00
|
|
|
echo "exports.version = '"`grep version package.json | awk '{gsub(/[^0-9a-z\.-]/,"",$$2); print $$2}'`"';" > $@
|
2014-05-20 17:43:03 +00:00
|
|
|
|
|
|
|
.PHONY: clean
|
2017-02-24 05:11:45 +00:00
|
|
|
clean: ## Remove targets and build artifacts
|
2022-04-06 06:45:11 +00:00
|
|
|
rm -f $(TARGET) $(FLOWTARGET) xlscfb.js xlscfb.flow.js
|
2014-11-03 04:02:42 +00:00
|
|
|
|
|
|
|
.PHONY: clean-data
|
|
|
|
clean-data:
|
|
|
|
rm -fr ./test_files/ ./test_files_pres/
|
2014-05-20 17:43:03 +00:00
|
|
|
|
|
|
|
.PHONY: init
|
2017-02-24 05:11:45 +00:00
|
|
|
init: ## Initial setup for development
|
2018-03-05 03:49:40 +00:00
|
|
|
if [ ! -e test_files ]; then git clone --depth=1 https://github.com/SheetJS/test_files; fi
|
2014-05-20 17:43:03 +00:00
|
|
|
cd test_files; git pull; make
|
2018-03-05 03:49:40 +00:00
|
|
|
if [ ! -e test_files_pres ]; then git clone --depth=1 https://github.com/SheetJS/test_files_pres; fi
|
2014-11-03 04:02:42 +00:00
|
|
|
cd test_files_pres; git pull
|
2014-05-20 17:43:03 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
.PHONY: dist
|
|
|
|
dist: dist-deps $(TARGET) ## Prepare JS files for distribution
|
2022-04-06 06:45:11 +00:00
|
|
|
mkdir -p dist
|
2017-02-24 05:11:45 +00:00
|
|
|
cp LICENSE dist/
|
2022-04-06 06:45:11 +00:00
|
|
|
cp $(TARGET) dist/
|
2017-09-14 21:14:22 +00:00
|
|
|
uglifyjs $(TARGET) $(UGLIFYOPTS) -o dist/$(LIB).min.js --source-map dist/$(LIB).min.map --preamble "$$(head -n 1 bits/00_header.js)"
|
2017-02-24 05:11:45 +00:00
|
|
|
misc/strip_sourcemap.sh dist/$(LIB).min.js
|
|
|
|
|
|
|
|
.PHONY: dist-deps
|
|
|
|
dist-deps: xlscfb.js ## Copy dependencies for distribution
|
2022-04-06 06:45:11 +00:00
|
|
|
mkdir -p dist
|
2017-09-20 23:33:03 +00:00
|
|
|
cp xlscfb.flow.js dist/xlscfb.js
|
2017-02-24 05:11:45 +00:00
|
|
|
|
|
|
|
.PHONY: aux
|
|
|
|
aux: $(AUXTARGETS)
|
|
|
|
|
|
|
|
.PHONY: xls
|
|
|
|
xls: xlscfb.js
|
|
|
|
|
2022-04-06 06:45:11 +00:00
|
|
|
XLSSKIP=bits/08_blob.js bits/04_base64.js bits/05_buf.js bits/98_exports.js
|
|
|
|
XLSDEPS=misc/xlscfb.js $(filter-out $(XLSSKIP),$(DEPS))
|
2017-02-24 05:11:45 +00:00
|
|
|
xlscfb.flow.js: $(XLSDEPS) ## Build support library
|
2022-04-06 06:45:11 +00:00
|
|
|
cat $^ | tr -d '\15\32' | grep -v DO_NOT_EXPORT_CFB > $@
|
2017-02-24 05:11:45 +00:00
|
|
|
|
2017-10-20 20:36:54 +00:00
|
|
|
BYTEFILE=dist/cfb.min.js dist/xlscfb.js
|
|
|
|
.PHONY: bytes
|
|
|
|
bytes: ## Display minified and gzipped file sizes
|
2022-04-06 06:45:11 +00:00
|
|
|
for i in $(BYTEFILE); do npx printj "%-30s %7d %10d" $$i $$(wc -c < $$i) $$(gzip --best --stdout $$i | wc -c); done
|
2017-10-20 20:36:54 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
|
|
|
|
## Testing
|
|
|
|
|
2013-11-26 15:56:58 +00:00
|
|
|
.PHONY: test mocha
|
2017-02-24 05:11:45 +00:00
|
|
|
test mocha: test.js $(TARGET) ## Run test suite
|
2014-11-03 04:02:42 +00:00
|
|
|
mocha -R spec -t 20000
|
2013-10-26 20:20:19 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
#* To run tests for one format, make test_<fmt>
|
2017-10-20 20:36:54 +00:00
|
|
|
#* To run the core test suite, make test_misc
|
2014-11-03 04:02:42 +00:00
|
|
|
TESTFMT=$(patsubst %,test_%,$(FMT))
|
|
|
|
.PHONY: $(TESTFMT)
|
|
|
|
$(TESTFMT): test_%:
|
|
|
|
FMTS=$* make test
|
|
|
|
|
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
## Code Checking
|
|
|
|
|
2017-10-20 20:36:54 +00:00
|
|
|
.PHONY: fullint
|
|
|
|
fullint: lint old-lint tslint flow mdlint ## Run all checks
|
|
|
|
|
2013-11-26 15:56:58 +00:00
|
|
|
.PHONY: lint
|
2017-07-28 17:53:08 +00:00
|
|
|
lint: $(TARGET) $(AUXTARGETS) ## Run eslint checks
|
2022-04-06 06:45:11 +00:00
|
|
|
@./node_modules/.bin/eslint --ext .js,.njs,.json,.html,.htm $(TARGET) $(CMDS) $(HTMLLINT) package.json
|
|
|
|
@if [ -x "$(CLOSURE)" ]; then java -jar $(CLOSURE) $(REQS) $(FLOWTARGET) --jscomp_warning=reportUnknownTypes >/dev/null; fi
|
2017-07-28 17:53:08 +00:00
|
|
|
|
|
|
|
.PHONY: old-lint
|
|
|
|
old-lint: $(TARGET) $(AUXTARGETS) ## Run jshint and jscs checks
|
2022-04-06 06:45:11 +00:00
|
|
|
@./node_modules/.bin/jscs $(TARGET) $(AUXTARGETS) test.js
|
|
|
|
@./node_modules/.bin/jshint --show-non-errors $(TARGET) $(AUXTARGETS)
|
|
|
|
@./node_modules/.bin/jshint --show-non-errors $(CMDS)
|
|
|
|
@./node_modules/.bin/jshint --show-non-errors package.json test.js
|
|
|
|
@./node_modules/.bin/jshint --show-non-errors --extract=always $(HTMLLINT)
|
|
|
|
@if [ -x "$(CLOSURE)" ]; then java -jar $(CLOSURE) $(REQS) $(FLOWTARGET) --jscomp_warning=reportUnknownTypes >/dev/null; fi
|
2013-10-27 20:13:02 +00:00
|
|
|
|
2017-07-28 17:53:08 +00:00
|
|
|
.PHONY: tslint
|
|
|
|
tslint: $(TARGET) ## Run typescript checks
|
|
|
|
#@npm install dtslint typescript
|
2018-01-19 01:09:51 +00:00
|
|
|
#@npm run-script dtslint
|
2022-04-06 06:45:11 +00:00
|
|
|
./node_modules/.bin/dtslint types
|
2017-07-28 17:53:08 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
.PHONY: flow
|
|
|
|
flow: lint ## Run flow checker
|
2017-09-14 21:14:22 +00:00
|
|
|
@flow check --all --show-all-errors --include-warnings
|
2013-11-26 15:56:58 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
.PHONY: cov
|
|
|
|
cov: misc/coverage.html ## Run coverage test
|
|
|
|
|
2014-05-20 17:43:03 +00:00
|
|
|
misc/coverage.html: $(TARGET) test.js
|
2017-02-24 05:11:45 +00:00
|
|
|
mocha --require blanket -R html-cov -t 20000 > $@
|
2014-11-03 04:02:42 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
.PHONY: coveralls
|
|
|
|
coveralls: ## Coverage Test + Send to coveralls.io
|
|
|
|
mocha --require blanket --reporter mocha-lcov-reporter -t 20000 | node ./node_modules/coveralls/bin/coveralls.js
|
2014-11-03 04:02:42 +00:00
|
|
|
|
2017-10-20 20:36:54 +00:00
|
|
|
MDLINT=README.md
|
|
|
|
.PHONY: mdlint
|
|
|
|
mdlint: $(MDLINT) ## Check markdown documents
|
|
|
|
alex $^
|
|
|
|
mdspell -a -n -x -r --en-us $^
|
2014-11-03 04:02:42 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
.PHONY: help
|
|
|
|
help:
|
|
|
|
@grep -hE '(^[a-zA-Z_-][ a-zA-Z_-]*:.*?|^#[#*])' $(MAKEFILE_LIST) | bash misc/help.sh
|
2014-11-03 04:02:42 +00:00
|
|
|
|
2017-02-24 05:11:45 +00:00
|
|
|
#* To show a spinner, append "-spin" to any target e.g. cov-spin
|
|
|
|
%-spin:
|
|
|
|
@make $* & bash misc/spin.sh $$!
|