-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (67 loc) · 2.22 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
87
# Build configuration
# -------------------
APP_NAME = `grep -m1 name package.json | awk -F: '{ print $$2 }' | sed 's/[ ",]//g'`
APP_VERSION = `grep -m1 version package.json | awk -F: '{ print $$2 }' | sed 's/[ ",]//g'`
GIT_REVISION = `git rev-parse HEAD`
# Linter and formatter configuration
# ----------------------------------
PRETTIER_FILES_PATTERN = '{lib,tests}/**/*.{js,ts,tsx,svg,json}' '**/*.md'
SCRIPTS_PATTERN = '{lib,tests}/**/*.{js,ts,tsx}'
# Introspection targets
# ---------------------
.PHONY: help
help: header targets
.PHONY: header
header:
@echo "\033[34mEnvironment\033[0m"
@echo "\033[34m---------------------------------------------------------------\033[0m"
@printf "\033[33m%-23s\033[0m" "APP_NAME"
@printf "\033[35m%s\033[0m" $(APP_NAME)
@echo ""
@printf "\033[33m%-23s\033[0m" "APP_VERSION"
@printf "\033[35m%s\033[0m" $(APP_VERSION)
@echo ""
@printf "\033[33m%-23s\033[0m" "GIT_REVISION"
@printf "\033[35m%s\033[0m" $(GIT_REVISION)
@echo "\n"
.PHONY: targets
targets:
@echo "\033[34mTargets\033[0m"
@echo "\033[34m---------------------------------------------------------------\033[0m"
@perl -nle'print $& if m{^[a-zA-Z_-\d]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-22s\033[0m %s\n", $$1, $$2}'
# Development targets
# -------------------
.PHONY: dependencies
dependencies: ## Install dependencies required by the library
- yarn install
.PHONY: ci-dependencies
ci-dependencies: ## Install dependencies required by the library in CI
yarn install --frozen-lockfile
.PHONY: build
build: ## Build the library
yarn build
.PHONY: ci-test
ci-test: ## Run the test suite in CI
CI=true yarn test
.PHONY: test
test: ## Run the test suite
yarn test
# Check, lint and format targets
# ------------------------------
.PHONY: check
check: check-format lint
.PHONY: check-all
check-all: check-format lint check-types
.PHONY: check-format
check-format:
yarn prettier --check $(PRETTIER_FILES_PATTERN)
.PHONY: check-types
check-types:
yarn tsc
.PHONY: format
format: ## Format project files
- yarn prettier --write $(PRETTIER_FILES_PATTERN)
- yarn eslint --fix $(SCRIPTS_PATTERN)
.PHONY: lint
lint: ## Lint project files
yarn eslint --max-warnings 0 $(SCRIPTS_PATTERN)