-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
49 lines (40 loc) · 828 Bytes
/
Makefile
File metadata and controls
49 lines (40 loc) · 828 Bytes
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
default: build
core-build:
@echo "🕹 $@"
cd ./packages/core && \
npm run build && \
npm run type
@echo "☘️ $@"
core-dev: core-build
@echo "🕹 $@"
cd ./packages/core && \
npm run dev
@echo "☘️ $@"
core-test: core-build
@echo "🕹 $@"
cd ./packages/core && \
npm run check
@echo "☘️ $@"
eslint-build: core-build
@echo "🕹 $@"
cd ./packages/eslint && \
npm run build
@echo "☘️ $@"
eslint-test: eslint-build
@echo "🕹 $@"
cd ./packages/eslint && \
npm run check && \
npm test
@echo "☘️ $@"
dozen-build: core-build
@echo "🕹 $@"
cd ./packages/dozen && \
npm run build
@echo "☘️ $@"
dozen-test: dozen-build
@echo "🕹 $@"
cd ./packages/dozen && \
npm test
@echo "☘️ $@"
build: core-build eslint-build dozen-build
test: core-test eslint-test