1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/make -f
# generate documentation unless nodoc requested
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
DOCS = README.html README.txt MIGRATION_TO_V3.html MIGRATION_TO_V3.txt
CHANGELOGS = CHANGELOG.html CHANGELOG.txt
endif
ESLINT = NO_COLOR=1 eslint
JEST = jest --no-color
# normalize output with TAP where possible unless terse requested
ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS)))
ESLINT += --format tap
JEST += --verbose
else
ESLINT += --format unix
endif
override_dh_clean:
dh_clean -- $(DOCS) $(CHANGELOGS)
override_dh_auto_build: $(DOCS) $(CHANGELOGS)
# TODO: maybe use upstream ESLint config when prettier is in Debian
override_dh_auto_test:
$(JEST)
$(ESLINT) --no-eslintrc --env node --parser-options '{ecmaVersion: 2018, sourceType: script}' .
override_dh_installdocs:
dh_installdocs --all -- $(DOCS)
override_dh_installchangelogs:
dh_installchangelogs -- $(CHANGELOGS)
%.html: %.md
cmark-gfm $< > $@
%.txt: %.md
cmark-gfm --to plaintext $< > $@
# avoid installing tests
%:
dh $@ -X __tests__
|