Unverified Commit 91c7ed45 authored by Nathanial Spearing's avatar Nathanial Spearing Committed by GitHub

feat(npm): add `npmrd` alias (#11627)

parent 5b11e70a
...@@ -29,6 +29,7 @@ plugins=(... npm) ...@@ -29,6 +29,7 @@ plugins=(... npm)
| `npmI` | `npm init` | Run npm init | | `npmI` | `npm init` | Run npm init |
| `npmi` | `npm info` | Run npm info | | `npmi` | `npm info` | Run npm info |
| `npmSe` | `npm search` | Run npm search | | `npmSe` | `npm search` | Run npm search |
| `npmrd` | `npm run dev` | Run npm run dev |
## `npm install` / `npm uninstall` toggle ## `npm install` / `npm uninstall` toggle
......
...@@ -70,6 +70,9 @@ alias npmi="npm info" ...@@ -70,6 +70,9 @@ alias npmi="npm info"
# Run npm search # Run npm search
alias npmSe="npm search" alias npmSe="npm search"
# Run npm run dev
alias npmrd="npm run dev"
npm_toggle_install_uninstall() { npm_toggle_install_uninstall() {
# Look up to the previous 2 history commands # Look up to the previous 2 history commands
local line local line
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment