Zoltan Kochan

Results 827 comments of Zoltan Kochan

I don't know currently why this is happening but I will add more details to the error message: https://github.com/pnpm/pnpm/pull/6536

I understand what is your problem but I can't fix it if I can't reproduce it. You should provide steps to reproduce. If not, with more info in the error...

Update to v8.5.1 and post the new error message. The new details should printed at the bottom with default color (not red).

@Gregoor are the new details helping to localize the issue? Could you create a reproduction repo for this issue? > I'm somewhat sure that this is my system being bonked...

I think I know why this is happening. Probably the lockfile was generated with pnpm v7 (which has `auto-install-peers=false` by default), then `pnpm i --frozen-lockfile` was executed with pnpm v8...

Hoisting is a feature that was added to fix external dependencies that you don't have control over. There is no legitimate use of it. It is just a workaround for...

You can simply put relative dependencies to the root package.json. So for instance, you can add this to the root `package.json` of the monorepo: ```json { "devDependencies": { "eslint-plugin-foo": "link:packages/eslint-plugin-foo"...

What is the actual issue though that you are trying to solve with hoisting? If it is an issue with types, maybe this would help: https://github.com/pnpm/pnpm/issues/9533#issuecomment-2902846202