File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,13 @@ all: test lint typecheck
3
3
4
4
.PHONY : clean
5
5
clean :
6
+ @echo " "
7
+ @echo " => cleaning dependencies and builds..."
6
8
@rm -Rf node_modules dist
7
9
8
10
.PHONY : commit
9
11
commit :
10
- npx cz
12
+ @ npx cz
11
13
12
14
.PHONY : publish
13
15
publish :
@@ -29,7 +31,9 @@ server:
29
31
# Builds
30
32
31
33
node_modules : package.json
32
- npm install && /usr/bin/touch node_modules
34
+ @echo " "
35
+ @echo " => installing dependencies..."
36
+ @npm install && /usr/bin/touch node_modules
33
37
34
38
dist : package.json rollup.config.js $(wildcard src/* .js) node_modules
35
39
@echo " "
@@ -47,11 +51,15 @@ test/fetch-api/api.spec.js: test/fetch-api/api.spec.ts
47
51
48
52
.PHONY : commitlint
49
53
commitlint : node_modules
50
- npx commitlint --from origin/main --to HEAD --verbose
54
+ @echo " "
55
+ @echo " => linting commits..."
56
+ @npx commitlint --from origin/main --to HEAD --verbose
51
57
52
58
.PHONY : cov
53
59
cov :
54
- npx nyc report --reporter=text-lcov > .reports/coverage.lcov && npx codecov
60
+ @echo " "
61
+ @echo " => checking code coverage..."
62
+ @npx nyc report --reporter=text-lcov > .reports/coverage.lcov && npx codecov
55
63
56
64
.PHONY : lint
57
65
lint :
You can’t perform that action at this time.
0 commit comments