Fix pass arg issue

This commit is contained in:
Han Yeong-woo 2023-09-19 03:50:54 +09:00
parent 6771675815
commit 50b529e7b8
No known key found for this signature in database
GPG key ID: A46E340CB4E4D6AD

View file

@ -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",