-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
86 lines (63 loc) · 2 KB
/
Makefile
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
PACKAGE_NAME = kwmjs
# Tools
YARN ?= yarn
CHGLOG ?= git-chglog
# Variables
ARGS ?=
TARGET ?= ES5
DATE ?= $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
VERSION ?= $(shell git describe --tags --always --dirty --match=v* 2>/dev/null | sed 's/^v//' || \
cat $(CURDIR)/.version 2> /dev/null || echo 0.0.0-unreleased)
# Build
.PHONY: all
all: vendor | kwm docs
.PHONY: kwmjs
kwmjs: vendor ; $(info building $@ ...) @
BUILD_VERSION=$(VERSION) BUILD_DATE=$(DATE) TARGET=$(TARGET) $(YARN) webpack --display-error-details --color --mode=production
echo $(VERSION) > .version
.PHONY: kwm
kwm: kwmjs
.PHONY: kwm-es5
kwm-es5: TARGET=ES5
kwm-es5: kwmjs
.PHONY: kwm-es6
kwm-es6: TARGET=ES2015
kwm-es6: kwmjs
.PHONY: kwm-dev
kwm-dev: vendor ; $(info building and watching $@ ...) @
TARGET=$(TARGET) $(YARN) webpack --display-error-details --progress --color --mode=development --watch
.PHONY: docs
docs: vendor ; $(info building $@ ...) @
@$(YARN) typedoc --out ./docs --hideGenerator --excludePrivate --name 'Kopano Webmeetings Javascript Client Library $(VERSION)' --mode file --theme minimal --target ES5 ./src
# Helpers
.PHONY: lint
lint: vendor ; $(info running linters ...) @
@$(YARN) eslint . --ext .js,.ts --cache && echo "eslint: no lint errors"
.PHONY: lint-checkstyle
lint-checkstyle: vendor ; $(info running linters checkstyle ...) @
@mkdir -p ./test
@$(YARN) eslint -f checkstyle --ext .js,.ts -o ./test/tests.eslint.xml . || true
# Yarn
.PHONY: vendor
vendor: .yarninstall
.yarninstall: package.json ; $(info getting depdencies with yarn ...) @
@$(YARN) install
@touch $@
.PHONY: dist
dist: ; $(info building dist tarball ...)
@mkdir -p "dist/"
$(YARN) pack --filename="dist/${PACKAGE_NAME}-${VERSION}.tgz"
.PHONY: changelog
changelog: ; $(info updating changelog ...)
$(CHGLOG) --output CHANGELOG.md $(ARGS)
.PHONY: clean
clean: ; $(info cleaning ...) @
$(YARN) cache clean
@rm -rf umd
@rm -f NOTICES.txt
@rm -f .version
@rm -rf node_modules
@rm -f .yarninstall
.PHONY: version
version:
@echo $(VERSION)