Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 950 Bytes

README-dev.md

File metadata and controls

41 lines (31 loc) · 950 Bytes

VSCode Samge Translate Plugin Dev

if you want to modify and publish your own plugin you can refer to the following steps:

  • register a vscode store development account

  • installation dependencies

npm install -g vsce yarn
yarn install
  • modify the necessary configuration in package.json to your own warehouse information
{
    "name": "your plugin name (id)",
    "displayName": "your plugin displayName",
    // other config ……
    "repository": {
        "type": "git",
        "url": "the github repository address for your plugin. this repository needs to be submitted first. type public"
    },
    "publisher": "the name you registered in the vscode plugin store",
    "icon": "your custom plugin icon is read by default:icon.png"
}
  • running and debugging

  • package and publish

vsce login yourPluginName

vsce package

vsce publish