Skip to content

Commit

Permalink
fix(pnpm): use pnpm at kit root
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlindquist committed Oct 11, 2024
1 parent 99f1c31 commit 3bdf8b3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/core/resolvers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ export let kenvPath = (...parts: string[]) => {

export let kitPnpmPath = (...parts: string[]) => {
return createPathResolver(
getEnvOrDefault(
process.env.KIT_PNPM_PATH,
kitPath("pnpm")
)
getEnvOrDefault(process.env.KIT_PNPM_PATH, kitPath())
)(...parts.filter(Boolean))
}

Expand Down

0 comments on commit 3bdf8b3

Please sign in to comment.