VS Code Extension Manager https://github.com/microsoft/vscode-vsce
Find a file
Joao Moreno 8f4b342bc6 docs
2015-10-07 16:12:06 +02:00
docs docs 2015-10-07 16:12:06 +02:00
resources first steps 2015-09-17 21:53:03 +02:00
src fix publisher name validation 2015-10-07 16:09:37 +02:00
test ignore dev dependencies 2015-09-29 17:34:53 +02:00
typings unpublish 2015-10-07 12:32:44 +02:00
.gitignore add .gitignore 2015-09-17 21:48:11 +02:00
.npmignore docs 2015-10-07 16:10:57 +02:00
gulpfile.babel.js package command, help output 2015-09-17 22:54:04 +02:00
jsconfig.json first steps 2015-09-17 21:53:03 +02:00
package.json rename to vsce 2015-10-07 11:35:45 +02:00
README.md docs 2015-10-07 16:12:06 +02:00
tsconfig.json first steps 2015-09-17 21:53:03 +02:00
tsd.json publish: first steps 2015-09-18 11:25:48 +02:00

VSCode Extension Manager

This tool assists in publishing Visual Studio Code extensions.

Get Started

First, install using npm:

npm install -g vsce

Then, cd to your extension's directory. It is good practice to list the files that will be included in your extension's package, before you actually publish:

$ vsce ls
hello.js
package.json

Publish away:

$ vsce publish
Publishing uuid@0.0.1...
Successfully published uuid@0.0.1!

Note: Before you can publish an extension to the gallery, you'll first need to create a publisher.

Help Topics