-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
[question] how to develop vscode extensions locally with inter dependencies #35458
Comments
Can you show me the log from vsce? |
@joaomoreno
|
Is vscode listed in the |
yes |
As a regular dependency? And the version matches what's on disk? Because that's what |
hmm, ok. So I actually had it listed as |
Hm |
Moved to microsoft/vscode-vsce#207 |
I'm attempting to develop extensions which have a common dependency.
I use
npm link
to satisfy the dependency locally.The problem is that I can't package the extension because
vsce
will fail due tonpm
saying there are extraneous modules. This is due to both modules requiringvscode
.The annoying work around is to uninstall the
vscode
from the common module before I package/publish. But this is an annoying workflow.Is there a way to make this work properly?
The text was updated successfully, but these errors were encountered: