VSCode Publish Extension

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2020 Aug 30 9:44
Editor
Edited
Edited
2022 Jan 11 1:48
Tags
Tags
  • package.json needed
    • repository
    • publisher
  • more
    • logo - path

Create Package

yarn global add yo yarn global add generator-code yo code
 

Publish Package

yarn global add vsce vsce package vsce create-publisher seonglae vsce publish
 
 
 

package.json vscode

"scripts": { "release": "vsce package && vsce publish" }, "galleryBanner": { "color": "#242426", "theme": "dark" }, "engines": { "vscode": "^1.x.x" }, "publisher": "seonglae", "icon": "images/logo.png", "categories": [ "Extension Packs" ], "keywords": [ ], "extensionPack": [ ]
 
 
 

available functions

Set icon for extension in vscode
Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. Provide details and share your research! Asking for help, clarification, or responding to other answers. Making statements based on opinion; back them up with references or personal experience. To learn more, see our tips on writing great answers.
Set icon for extension in vscode
Common Capabilities
Common Capabilities are important building blocks for your extensions. Almost all extensions use some of these functionalities. Here is how you can take advantage of them. Command is central to how VS Code works. You open the Command Palette to execute commands, bind custom keybindings to commands, and right-click to invoke commands in Context Menus.
Common Capabilities

token

Publishing Extensions
Once you have made a high-quality extension, you can publish it to the VS Code Extension Marketplace so others can find, download, and use your extension. Alternatively, you can package an extension into the installable VSIX format and share it with other users.
Publishing Extensions
 
 

 

Recommendations