vscode-vsce/README.md
Joao Moreno 487fd4dae9 docs
2015-10-07 16:10:57 +02:00

38 lines
No EOL
729 B
Markdown

# 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**](docs/publishers.md).
## Help Topics
* [About the Manifest](docs/manifest.md)
* [About Publishers](docs/publishers.md)
* [Advanced Usage](docs/advanced.md)