Im trying to publish a VSCode theme to Azure. When I use the command:
vsce package
I get the error:
WARNING A 'repository' field is missing from the 'package.json' manifest file.
Do you want to continue? [y/N] y
WARNING LICENSE.md, LICENSE.txt or LICENSE not found
Do you want to continue? [y/N] y.
However, I have a repository field in my package.json file, I also have a License.md file. When I attempt to use the command:
vsce publish
I get the errors mentioned above, as well as:
WARNING A 'repository' field is missing from the 'package.json' manifest file.
Do you want to continue? [y/N] y
WARNING LICENSE.md, LICENSE.txt or LICENSE not found
Do you want to continue? [y/N] y
ERROR Missing publisher name. Learn more: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#publishing-extensions.
However, I have a publisher name in my package.json file. I seem to be getting errors for requirement I have already met?