We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af3161f commit ae6b15dCopy full SHA for ae6b15d
modules/05-pnpm.sh
@@ -2,12 +2,14 @@
2
3
# install
4
alias pi='pnpm install';
5
-alias pi-s='pnpm install -S';
6
-alias pi-d='pnpm install -D';
7
alias pii='pnpm install --registry=https://registry.npmjs.org';
8
9
-# link & global
+# add package
+alias pi-s='pnpm add';
+alias pi-d='pnpm add -D';
10
alias pi-g='pnpm add -g';
11
+
12
+# link & global
13
alias pilg='pnpm link --global';
14
alias pil='pnpm install && pnpm link --global';
15
0 commit comments