VS Code Extension Manager https://github.com/microsoft/vscode-vsce
Find a file
dependabot[bot] 2a6d88d7ba
Bump lodash from 4.17.15 to 4.17.19
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>
2020-07-16 22:33:45 +00:00
.vscode Update launch.json to be useful for extension debugging 2020-06-26 17:43:19 +02:00
resources Create and index one file per color and icon themes 2019-02-06 19:42:07 +01:00
src cleanup github badge validation 2020-06-15 09:41:46 +02:00
.gitignore remove package-lock.json 2019-01-17 08:37:20 +01:00
.npmignore fix types 2019-04-12 16:42:09 +02:00
azure-pipelines.yml improve node and yarn versions 2019-06-20 11:23:41 +02:00
LICENSE Update LICENSE 2015-11-18 15:16:54 +01:00
package.json Fix issues with missing out directory 2020-06-26 14:36:59 +02:00
README.md Update README.md 2020-01-13 11:56:24 +01:00
ThirdPartyNotices.txt add ThirdPartyNotices.txt 2015-12-16 18:27:13 +00:00
tsconfig.json ts: noUnusedLocals, noUnusedParameters 2019-11-28 16:50:49 +01:00
yarn.lock Bump lodash from 4.17.15 to 4.17.19 2020-07-16 22:33:45 +00:00

vsce

The Visual Studio Code Extension Manager

Build Status npm version

Requirements

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.