mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-21 17:43:23 +01:00
Fix pass arg issue
This commit is contained in:
parent
6771675815
commit
50b529e7b8
1 changed files with 2 additions and 2 deletions
|
@ -29,11 +29,11 @@ interface PackageManagerCommands {
|
|||
const PACKAGE_MANAGER_COMMANDS = {
|
||||
npm: {
|
||||
install: "npm i",
|
||||
exec: "npm exec",
|
||||
exec: "npx",
|
||||
},
|
||||
yarn: {
|
||||
install: "yarn add",
|
||||
exec: "yarn exec",
|
||||
exec: "yarn",
|
||||
},
|
||||
pnpm: {
|
||||
install: "pnpm add",
|
||||
|
|
Loading…
Reference in a new issue