VS Code Extension Manager
https://github.com/microsoft/vscode-vsce
2a6d88d7ba
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.vscode | ||
resources | ||
src | ||
.gitignore | ||
.npmignore | ||
azure-pipelines.yml | ||
LICENSE | ||
package.json | ||
README.md | ||
ThirdPartyNotices.txt | ||
tsconfig.json | ||
yarn.lock |
vsce
The Visual Studio Code Extension Manager
Requirements
- Node.js at least
8.x.x
Usage
vsce
is meant to be mainly used as a command line tool. It can also be used a library since it exposes a small API.
Warning: When using vsce as a library be sure to sanitize any user input used in API calls, as a security measurement.
Development
First clone this repository, then:
yarn
yarn watch # or `watch-test` to also run tests
Once the watcher is up and running, you can run out of sources with:
yarn vsce
Publish to NPM
Simply push a new tag and the CI will automatically publish to NPM. The usual flow is:
npm version [minor|patch]
git push --follow-tags
About
This tool assists in packaging and publishing Visual Studio Code extensions.
Read the Documentation on the VS Code website.