-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility issue with PNPM package manager in 2.10.0 #758
Comments
@drochgenius PNPM support is pending: #421, we never implemented it. Looking at d68e2f7, the only conclusion I can draw is that using In your workspace, where do |
Thanks @joaomoreno for your response. In out monorepo, the
We switched from In the meantime, we have fixed the version to Regards |
Just curious... when you run |
I must to apply the This is with |
So your extension doesn't really depend on any node modules to work, correct? If so, you should not be using |
Thanks @joaomoreno , Yes it works perfectly if I use the I now understand I was not using |
Just to clarify because I spent way too much time on this matter 😅: Both vsce AFAIK @drochgenius your workflow was actually right, since I'm pretty sure you are handling deps bundling as part of your monorepo |
We are using
pnpm
package manager in our monorepo, in which we have many Visual Studio Code extensions.Up until version
2.10.0
, we were able to build the plugins with the--yarn
option, but from version2.10.0
it complains theyarn.lock
is not available due to this change: d68e2f7.Without the
--yarn
option, the plugins do not build in the monorepo context.Could you please explain why this change was made, and advise how we could adapt our codebase?
Thanks
The text was updated successfully, but these errors were encountered: