diff options
author | Alan Pearce | 2019-10-11 11:33:04 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-11 11:33:04 +0200 |
commit | 9e45c64ef86760a6d56b7196bd3f8b559d03ccf3 (patch) | |
tree | d39963a6982f9c8ece6b223044c44b4835c9ca25 | |
parent | 02977dc99164b2c21750b3a7b14ff200591d43aa (diff) | |
download | nixfiles-9e45c64ef86760a6d56b7196bd3f8b559d03ccf3.tar.lz nixfiles-9e45c64ef86760a6d56b7196bd3f8b559d03ccf3.tar.zst nixfiles-9e45c64ef86760a6d56b7196bd3f8b559d03ccf3.zip |
zsh: use pnpm-add for aliases
-rw-r--r-- | user/settings/zsh.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 0556eaa4..dac749c7 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -219,8 +219,8 @@ in pmi = "pnpm multi install"; pmx = "pnpm multi exec"; pmr = "pnpm multi run"; - pa = "pnpm install --save"; - pad = "pnpm install --save-dev"; + pa = "pnpm add --save"; + pad = "pnpm add --save-dev"; pd = "pnpm uninstall"; pou = "pnpm outdated"; pt = "pnpm test"; |