Skip to content

Commit 312d047

Browse files
committed
refactor: improved Makefile
1 parent d1f85aa commit 312d047

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ all: test lint typecheck
33

44
.PHONY: browser
55
browser:
6-
./bin/server --exec "npx open-cli http://localhost:8000/test/fetch-api/browser/"
6+
@./bin/server --exec "npx open-cli http://localhost:8000/test/fetch-api/browser/"
77

88
.PHONY: commit
99
commit: node_modules
10-
npx cz
10+
@npx cz
1111

1212
.PHONY: release
1313
release: node_modules
14-
npx standard-version
14+
@npx standard-version
1515

1616
.PHONY: release-alpha
1717
release-alpha: node_modules
18-
npx standard-version --prerelease alpha
18+
@npx standard-version --prerelease alpha
1919

2020
##
2121
# Builds
@@ -32,7 +32,7 @@ dist: package.json rollup.config.js $(wildcard src/*.js) node_modules
3232

3333
test/fetch-api/api.spec.js: node_modules test/fetch-api/api.spec.ts
3434
@echo ""
35-
@echo "=> make $@"
35+
@echo "=> compiling Typescript files..."
3636
@npx tsc
3737

3838
##

0 commit comments

Comments
 (0)