mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +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 = {
|
const PACKAGE_MANAGER_COMMANDS = {
|
||||||
npm: {
|
npm: {
|
||||||
install: "npm i",
|
install: "npm i",
|
||||||
exec: "npm exec",
|
exec: "npx",
|
||||||
},
|
},
|
||||||
yarn: {
|
yarn: {
|
||||||
install: "yarn add",
|
install: "yarn add",
|
||||||
exec: "yarn exec",
|
exec: "yarn",
|
||||||
},
|
},
|
||||||
pnpm: {
|
pnpm: {
|
||||||
install: "pnpm add",
|
install: "pnpm add",
|
||||||
|
|
Loading…
Reference in a new issue