Skip to content

Commit

Permalink
refactor: improved Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Dec 21, 2024
1 parent d1f85aa commit 312d047
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ all: test lint typecheck

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

.PHONY: commit
commit: node_modules
npx cz
@npx cz

.PHONY: release
release: node_modules
npx standard-version
@npx standard-version

.PHONY: release-alpha
release-alpha: node_modules
npx standard-version --prerelease alpha
@npx standard-version --prerelease alpha

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

test/fetch-api/api.spec.js: node_modules test/fetch-api/api.spec.ts
@echo ""
@echo "=> make $@"
@echo "=> compiling Typescript files..."
@npx tsc

##
Expand Down

0 comments on commit 312d047

Please sign in to comment.