Skip to content

Commit

Permalink
Merge pull request #1252 from brunoroque06/add-npm-run
Browse files Browse the repository at this point in the history
Add `npm run`
  • Loading branch information
rsteube authored Aug 9, 2022
2 parents a2b1e69 + 37029b3 commit cd72716
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions completers/npm_completer/cmd/runScript.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ import (
)

var runScriptCmd = &cobra.Command{
Use: "run-script",
Short: "Run arbitrary package scripts",
Run: func(cmd *cobra.Command, args []string) {},
Use: "run-script",
Short: "Run arbitrary package scripts",
Aliases: []string{"run"},
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
Expand Down

0 comments on commit cd72716

Please sign in to comment.