unfied style

This commit is contained in:
root
2026-05-23 04:35:47 -04:00
parent fd10d0db6a
commit 07fba16ff2
57 changed files with 565 additions and 263 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
set -eu
REAL_NPM="/usr/local/bin/npm"
if [ "${1-}" = "config" ] && [ "${2-}" = "get" ] && [ "${3-}" = "registry" ]; then
exec "$REAL_NPM" --prefix "$PWD" "$@"
fi
exec "$REAL_NPM" "$@"