Merge pull request #5247 from timohubois/feat-mise-node-latest-npx-wrapper

Run Omarchy's npx wrappers through mise-managed Node
This commit is contained in:
Timo Hubois
2026-04-07 12:21:39 +02:00
committed by GitHub
parent cc3880b99e
commit 3bfed7da37
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ mkdir -p "$HOME/.local/bin"
cat > "$HOME/.local/bin/$command" <<EOF cat > "$HOME/.local/bin/$command" <<EOF
#!/bin/bash #!/bin/bash
exec npx --yes $package "\$@" exec mise exec node@latest -- npx --yes $package "\$@"
EOF EOF
chmod +x "$HOME/.local/bin/$command" chmod +x "$HOME/.local/bin/$command"
+3
View File
@@ -0,0 +1,3 @@
echo "Update npx wrappers to run through mise node@latest"
source "$OMARCHY_PATH/install/packaging/npx.sh"