Please begin by reading Extension API and Debugger. The the official vscode document will provide you with all the information you need to get started.
To run extension, follow these steps.
-
Ensure that
Node.js >= 20
and Visual Studio Code Insiders is installed. This provides the platform on which the build tooling runs. -
Follow the steps below to start the extension in the:
# Clone the repo $ git clone [email protected]:unit-mesh/auto-dev-vscode.git # Open in vscode-insiders $ code-insiders auto-dev-vscode
-
Installing Extension Dependencies
# vsce currently only supports npm # see https://github.com/microsoft/vscode-vsce/issues/517 # see https://github.com/microsoft/vscode-vsce/issues/421 $ npm install
-
Now you can start it with Run and Debug.
You can now run the tests with this command:
$ npm test
Better run lint and package:
$ npm run lint
$ npm run pa
$ git remote add upstream [email protected]:unit-mesh/auto-dev-vscode.git
$ git fetch upstream
$ git checkout master
$ git merge upstream/master