@@ -37,34 +37,34 @@ help: ## Show this help message
3737 awk ' BEGIN {FS = ":.*?## "}; {printf " \033[36m%-18s\033[0m %s\n", $$1, $$2}'
3838
3939install : # # Install project dependencies
40- $(PACKAGE_MANAGER ) install --legacy-peer-deps
40+ @ $(PACKAGE_MANAGER ) install --legacy-peer-deps
4141
4242build : check-deps # # Build Binharic
43- $(PACKAGE_MANAGER ) run build
43+ @ $(PACKAGE_MANAGER ) run build
4444
4545run : build # # Start Binharic in terminal
46- $(PACKAGE_MANAGER ) start
46+ @ $(PACKAGE_MANAGER ) start
4747
4848clean : # # Remove build artifacts
49- rm -rf dist $(NODE_MODULES_DIR ) $(REMOVABLE_THINGS )
49+ @ rm -rf dist $(NODE_MODULES_DIR ) $(REMOVABLE_THINGS )
5050
5151# ==============================================================================
5252# DEVELOPMENT
5353# ==============================================================================
5454test : check-deps # # Run the test suite
55- $(PACKAGE_MANAGER ) test
55+ @ $(PACKAGE_MANAGER ) test
5656
5757coverage : check-deps # # Run the test suite and generate a coverage report
58- $(PACKAGE_MANAGER ) run coverage
58+ @ $(PACKAGE_MANAGER ) run coverage
5959
6060lint : check-deps # # Run linter checks
61- $(PACKAGE_MANAGER ) run lint
61+ @ $(PACKAGE_MANAGER ) run lint
6262
6363typecheck : check-deps # # Run TypeScript type checks
64- $(PACKAGE_MANAGER ) run typecheck
64+ @ $(PACKAGE_MANAGER ) run typecheck
6565
6666format : check-deps # # Format code with Prettier
67- $(PACKAGE_MANAGER ) run format
67+ @ $(PACKAGE_MANAGER ) run format
6868
6969# ==============================================================================
7070# GIT HOOKS
@@ -87,28 +87,28 @@ test-hooks: ## Test Git hooks on all files
8787# PUBLISHING
8888# ==============================================================================
8989npm-login : # # Log in to npm registry
90- $(PACKAGE_MANAGER ) login
90+ @ $(PACKAGE_MANAGER ) login
9191
9292npm-whoami : # # Show current npm user (if logged in)
93- -$(PACKAGE_MANAGER ) whoami
93+ @ -$(PACKAGE_MANAGER ) whoami
9494
9595pack : build # # Create npm tarball (binharic-cli-<version>.tgz)
96- $(PACKAGE_MANAGER ) pack
96+ @ $(PACKAGE_MANAGER ) pack
9797
9898pack-dry-run : build # # Preview files that would be packed
99- $(PACKAGE_MANAGER ) pack --dry-run
99+ @ $(PACKAGE_MANAGER ) pack --dry-run
100100
101101publish-dry-run : # # Simulate npm publish (no registry changes)
102- $(PACKAGE_MANAGER ) publish --dry-run
102+ @ $(PACKAGE_MANAGER ) publish --access public --dry-run
103103
104104publish : # # Publish the package to npm (runs build via prepublishOnly)
105- $(PACKAGE_MANAGER ) publish
105+ @ $(PACKAGE_MANAGER ) publish --access public
106106
107107version-patch : # # Bump patch version (x.y.z -> x.y.(z+1))
108- $(PACKAGE_MANAGER ) version patch
108+ @ $(PACKAGE_MANAGER ) version patch
109109
110110version-minor : # # Bump minor version (x.y.z -> x.(y+1).0)
111- $(PACKAGE_MANAGER ) version minor
111+ @ $(PACKAGE_MANAGER ) version minor
112112
113113version-major : # # Bump major version ((x+1).0.0)
114- $(PACKAGE_MANAGER ) version major
114+ @ $(PACKAGE_MANAGER ) version major
0 commit comments