-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Makefile
314 lines (245 loc) · 11.4 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
MAKEFLAGS += --no-print-directory
SOURCES = packages
.PHONY: help bootstrap init pkgs-build pkgs-publish clean-all website-install website website-build website-deploy storybook storybook-build storybook-deploy deploy-all e2e-open
########################################################################################################################
#
# HELP
#
########################################################################################################################
# COLORS
RED = $(shell printf "\33[31m")
GREEN = $(shell printf "\33[32m")
WHITE = $(shell printf "\33[37m")
YELLOW = $(shell printf "\33[33m")
RESET = $(shell printf "\33[0m")
# Add the following 'help' target to your Makefile
# And add help text after each target name starting with '\#\#'
# A category can be added with @category
HELP_HELPER = \
%help; \
while(<>) { push @{$$help{$$2 // 'options'}}, [$$1, $$3] if /^([a-zA-Z\-\%]+)\s*:.*\#\#(?:@([0-9]+\s[a-zA-Z\-\%_]+))?\s(.*)$$/ }; \
print "usage: make [target]\n\n"; \
for (sort keys %help) { \
print "${WHITE}$$_:${RESET}\n"; \
for (@{$$help{$$_}}) { \
$$sep = " " x (32 - length $$_->[0]); \
print " ${YELLOW}$$_->[0]${RESET}$$sep${GREEN}$$_->[1]${RESET}\n"; \
}; \
print "\n"; }
help: ##prints help
@perl -e '$(HELP_HELPER)' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help
########################################################################################################################
#
# 0. GLOBAL
#
########################################################################################################################
install: ##@0 global install
@pnpm install
init: ##@0 global cleanup/install/bootstrap
@$(MAKE) clean-all
@$(MAKE) install
@$(MAKE) pkgs-build
fmt: ##@0 global format code using prettier (js, css, md)
@pnpm prettier --color --write \
"packages/*/{src,tests}/**/*.{js,ts,tsx}" \
"packages/*/index.d.ts" \
"packages/*/README.md" \
"website/src/**/*.{js,ts,tsx,css}" \
"api/**/*.{js,ts,tsx}" \
"storybook/.storybook/*.{js,ts,tsx}" \
"storybook/stories/**/*.{js,ts,tsx}" \
"cypress/src/**/*.{js,ts,tsx}" \
"scripts/*.{js,mjs}" \
"cypress/src/**/*.{js,tsx}" \
"README.md"
fmt-check: ##@0 global check if files were all formatted using prettier
@echo "${YELLOW}Checking formatting${RESET}"
@pnpm prettier --color --list-different \
"packages/*/{src,tests}/**/*.{js,ts,tsx}" \
"packages/*/index.d.ts" \
"packages/*/README.md" \
"website/src/**/*.{js,ts,tsx,css}" \
"api/**/*.{js,ts,tsx}" \
"storybook/.storybook/*.{js,ts,tsx}" \
"storybook/stories/**/*.{js,ts,tsx}" \
"cypress/src/**/*.{js,ts,tsx}" \
"scripts/*.{js,mjs}" \
"cypress/src/**/*.{js,tsx}" \
"README.md"
test: ##@0 global run all checks/tests (packages, website)
@$(MAKE) fmt-check
@$(MAKE) pkgs-lint
@$(MAKE) pkgs-test
vercel-build: ##@0 global Build the website and storybook to vercel
@$(MAKE) website-build
@$(MAKE) storybook-build
@cp -a storybook/storybook-static website/public/storybook
clean-all: ##@0 global uninstall node modules, remove transpiled code & lock files
@rm -rf node_modules
@rm -rf package-lock.json
@$(foreach source, $(SOURCES), $(call clean-source-all, $(source)))
@rm -rf website/node_modules
@rm -rf website/package-lock.json
@rm -rf api/node_modules
@rm -rf api/package-lock.json
define clean-source-lib
rm -rf $(1)/*/cjs
endef
define clean-source-all
rm -rf $(1)/*/cjs
rm -rf $(1)/*/node_modules
rm -rf $(1)/*/package-lock.json
endef
########################################################################################################################
#
# 1. PACKAGES
#
########################################################################################################################
pkg-lint-%: ##@1 packages run eslint on package
@echo "${YELLOW}Running eslint on package ${WHITE}@nivo/${*}${RESET}"
@pnpm eslint ./packages/${*}/{src,tests}/**/*.{js,ts,tsx}
pkgs-lint: ##@1 packages run eslint on all packages
@echo "${YELLOW}Running eslint on all packages${RESET}"
@pnpm eslint "./packages/*/{src,tests}/**/*.{js,ts,tsx}"
pkgs-lint-fix: ##@1 packages run eslint on all packages with a fix option
@echo "${YELLOW}Running eslint on all packages${RESET}"
@pnpm eslint "./packages/*/{src,tests}/**/*.{js,ts,tsx}" --fix
pkg-test-cover-%: ##@1 packages run tests for a package with code coverage
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --rootDir . --coverage ./packages/${*}/tests
pkg-test-%: ##@1 packages run tests for a package
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests
pkg-watch-test-%: ##@1 packages run tests for a package and watch for changes
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests --watch
pkg-update-test-%: ##@1 packages run tests for a package and update its snapshots
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests -u
pkg-watch-test-%: ##@1 packages run tests for a package and watch for changes
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --rootDir . ./packages/${*}/tests --watch
pkgs-test: ##@1 packages run tests for all packages
@echo "${YELLOW}Running test suites for all packages${RESET}"
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --workerThreads --rootDir . ./packages/*/tests
pkgs-watch-test: ##@1 packages run tests for all packages and watch for changes
@echo "${YELLOW}Running test suites watcher for all packages${RESET}"
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --rootDir . ./packages/*/tests --watch
pkgs-test-cover: ##@1 packages run tests for all packages with code coverage
@echo "${YELLOW}Running test suites coverage for all packages${RESET}"
@export BABEL_ENV=development; pnpm jest -c ./packages/jest.config.js --rootDir . --coverage ./packages/*/tests
pkgs-build: pkgs-types ##@1 packages build all packages
@# Using exit code 255 in case of error as it'll make xargs stop immediately.
@export SKIP_TYPES=TRUE;find ./packages -type d -maxdepth 1 ! -path ./packages \
| sed 's|^./packages/||' \
| xargs -P 8 -I '{}' sh -c '$(MAKE) pkg-build-{} || exit 255'
pkgs-types: ##@1 packages build all package types
@pnpm tsc --build ./tsconfig.monorepo.json
pkgs-types-clean: ##@1 packages clean all package types
@pnpm tsc --build --clean ./tsconfig.monorepo.json
pkg-types-%: ##@1 packages generate types for a specific package
@if [ "$${SKIP_TYPES}" != "TRUE" ]; \
then \
if [ -f "./packages/${*}/tsconfig.json" ]; \
then \
echo "${YELLOW}Building TypeScript types for package ${WHITE}@nivo/${*}${RESET}"; \
rm -rf ./packages/${*}/dist/types; \
rm -rf ./packages/${*}/dist/tsconfig.tsbuildinfo; \
pnpm tsc --build ./packages/${*}; \
fi \
fi;
pkg-build-%: pkg-types-% ##@1 packages build a package
@-rm -rf ./packages/${*}/dist/nivo-${*}*
@export PACKAGE=${*}; NODE_ENV=production BABEL_ENV=production ./node_modules/.bin/rollup -c conf/rollup.config.mjs
pkgs-screenshots: ##@1 packages generate screenshots for packages readme (website dev server must be running)
@node scripts/capture.mjs
pkgs-publish-dry-run: ##@1 packages dry run for packages publication
#@$(MAKE) pkgs-build
@pnpm lerna publish \
--exact \
--no-git-tag-version \
--no-push \
--force-publish \
--registry "http://localhost:4873" \
--loglevel verbose
pkgs-publish: ##@1 packages publish all packages
@$(MAKE) pkgs-build
@echo "${YELLOW}Publishing packages${RESET}"
@pnpm lerna publish --exact
pkgs-publish-next: ##@1 packages publish all packages for @next npm tag
@$(MAKE) pkgs-build
@echo "${YELLOW}Publishing packages${RESET}"
@pnpm lerna publish --exact --npm-tag=next
pkg-dev-%: ##@1 packages build package (es flavor) on change, eg. `pkg-dev-bar`
@echo "${YELLOW}Running build watcher for package ${WHITE}@nivo/${*}${RESET}"
@rm -rf ./packages/${*}/cjs
@export PACKAGE=${*}; NODE_ENV=development BABEL_ENV=development ./node_modules/.bin/rollup -c conf/rollup.config.mjs -w
pkg-icons-%: ##@1 capture packages icons for the website, eg. `pkg-icons-bar`
./scripts/capture.mjs icons --pkg ${*}
@$(MAKE) website-sprites
pkg-previews-%: ##@1 capture packages previews for readmes, eg. `pkg-previews-bar`
./scripts/capture.mjs charts --pkg ${*}
pkg-capture-%: ##@1 capture packages previews and icons, eg. `pkg-capture-bar`
./scripts/capture.mjs all --pkg ${*}
@$(MAKE) website-sprites
########################################################################################################################
#
# 2. WEBSITE
#
########################################################################################################################
website-deps-up: ##@2 website interactive upgrade of website's dependencies
@pnpm upgrade-interactive --latest
website: ##@2 website start website in dev mode
@echo "${YELLOW}Starting website dev server${RESET}"
@cd website && pnpm start
website-build: ##@2 website build website
@echo "${YELLOW}Building website${RESET}"
@-rm -rf website/.cache
@cd website && pnpm build
website-serve: ##@2 website build & serve website
@$(MAKE) website-build
@cd website && pnpm serve
website-deploy: ##@2 website build & deploy website
@$(MAKE) website-build
@echo "${YELLOW}Deploying website${RESET}"
@pnpm gh-pages -d website/public -r git@github.com:plouc/nivo.git -b gh-pages
website-audit: ##@2 website audit website build
@cd website && pnpm analyze
website-lint: ##@2 website run eslint on the website code
@pnpm eslint ./website/src
website-sprites: ##@2 website build sprite sheet
@glue --img website/src/assets --css website/src/styles website/src/assets/icons
########################################################################################################################
#
# 3. STORYBOOK
#
########################################################################################################################
storybook: ##@3 storybook start storybook in dev mode on port 6006
@pnpm --filter storybook dev
storybook-build: ##@3 storybook build storybook
@echo "${YELLOW}Building storybook${RESET}"
@pnpm --filter storybook build
storybook-deploy: ##@3 storybook build and deploy storybook
@$(MAKE) storybook-build
@echo "${YELLOW}Deploying storybook${RESET}"
@pnpm gh-pages -d storybook/storybook-static -r git@github.com:plouc/nivo.git -b gh-pages -e storybook
########################################################################################################################
#
# 4. End-to-end tests
#
########################################################################################################################
end-to-end-open: ##@4 end-to-end open cypress
pnpm --filter nivo-e2e open
end-to-end-test: ##@4 end-to-end build
pnpm --filter nivo-e2e test
########################################################################################################################
#
# 5. API
#
########################################################################################################################
api-dev: ##@5 API run API in dev mode (watcher)
@echo "${YELLOW}Starting API in dev mode${RESET}"
@cd api && pnpm dev
api: ##@5 API run API in regular mode (no watcher)
@echo "${YELLOW}Starting API${RESET}"
@cd api && pnpm start
api-lint: ##@5 API run eslint on the API code
@pnpm eslint ./api/src
api-deploy: ##@5 API Deploy API on heroku
git subtree push --prefix api heroku master