Reputation: 13
A customer of mine wants to publish their first VS Code extension. Right now, they use a private repo. Neither they nor I managed to find VS Code publishing policy information that addresses whether they can use their private repo or use a public one.
Could anyone point out an answer to this question?
Upvotes: 1
Views: 563
Reputation: 53317
Once the extension is packed all code is in it, so it is not necessary to have a public Github repo (or any repo at all). Simply don't specify the repository
key in your package.json file.
Upvotes: 1
Reputation: 63143
vsce package
to generate the VSIX file.Upvotes: 1