Proper way to reference vscode-docker-extensibility package in vscode-containers project #341
-
|
Hey sorry to bother you all, but i am working on an update to provide podman specific pod feature to this vscode extention, I'm a little new to node.js development with vscode extensions and wanted to know how you all typically get the vscode-containers project to reference the dependency vscode-docker-extensibility in package.json? I've done both refencing its location as a normal file and by using npm link but it still won't refenerce any code changes i've made after running npm install and npm: run build task. any tips would be appreciated |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Generally what we do is build the package ( |
Beta Was this translation helpful? Give feedback.
Generally what we do is build the package (
npm run build && npm run package), then donpm install /path/to/the/tgzto install it. There's probably a way to makenpm linkwork but I haven't actually tried it.