Skip to content

Commit

Permalink
fix root workspace pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolai Katkov committed Jan 26, 2024
1 parent 4827f2b commit d4c74ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/eslint/installDependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ const installPnpmDependencies = (parameters: InstallDependenciesParameters): voi
.join(' ')

if (dependencyList) {
execSync(`pnpm add ${dependencyList} -w`, { cwd, stdio: debug ? 'inherit' : 'ignore' })
execSync(`pnpm add ${dependencyList}`, { cwd, stdio: debug ? 'inherit' : 'ignore' })
}

if (developmentDependencyList) {
execSync(`pnpm add -D ${developmentDependencyList} -w`, {
execSync(`pnpm add -D ${developmentDependencyList}`, {
cwd,
stdio: debug ? 'inherit' : 'ignore',
})
Expand Down

0 comments on commit d4c74ee

Please sign in to comment.