mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
pnpm uses npm lmao
This commit is contained in:
parent
c3cfef6205
commit
3b86592cb1
3 changed files with 25 additions and 3 deletions
|
@ -77,7 +77,8 @@
|
||||||
},
|
},
|
||||||
"BetterRoleDot": {
|
"BetterRoleDot": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"bothStyles": false
|
"bothStyles": false,
|
||||||
|
"copyRoleColorInProfilePopout": false
|
||||||
},
|
},
|
||||||
"BetterUploadButton": {
|
"BetterUploadButton": {
|
||||||
"enabled": false
|
"enabled": false
|
||||||
|
@ -586,6 +587,12 @@
|
||||||
},
|
},
|
||||||
"Dearrow": {
|
"Dearrow": {
|
||||||
"enabled": false
|
"enabled": false
|
||||||
|
},
|
||||||
|
"OnePingPerDM": {
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
"PermissionFreeWill": {
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
|
@ -598,6 +605,6 @@
|
||||||
"authenticated": true,
|
"authenticated": true,
|
||||||
"url": "https://api.vencord.dev/",
|
"url": "https://api.vencord.dev/",
|
||||||
"settingsSync": true,
|
"settingsSync": true,
|
||||||
"settingsSyncVersion": 1694953114463
|
"settingsSyncVersion": 1697115966658
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -41,4 +41,16 @@ if [[ $1 == "install" ]]; then
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Trick publish command
|
||||||
|
if [[ $1 == "publish" ]]; then
|
||||||
|
corepack npm $@
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Trick info command
|
||||||
|
if [[ $1 == "info" ]]; then
|
||||||
|
corepack npm $@
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
pnpm $@
|
pnpm $@
|
||||||
|
|
5
.zshrc
5
.zshrc
|
@ -118,7 +118,10 @@ export PATH="$ZIGD_HOME:$PATH"
|
||||||
|
|
||||||
# pnpm
|
# pnpm
|
||||||
export PNPM_HOME="/home/hyro/.local/share/pnpm"
|
export PNPM_HOME="/home/hyro/.local/share/pnpm"
|
||||||
export PATH="$PNPM_HOME:$PATH"
|
case ":$PATH:" in
|
||||||
|
*":$PNPM_HOME:"*) ;;
|
||||||
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
||||||
|
esac
|
||||||
# pnpm end
|
# pnpm end
|
||||||
|
|
||||||
# bun
|
# bun
|
||||||
|
|
Loading…
Reference in a new issue