Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Latest commit

 

History

History
35 lines (25 loc) · 962 Bytes

Development.md

File metadata and controls

35 lines (25 loc) · 962 Bytes

Development

Setting up Your Development Environment

To make management of the client and server easier, lerna will be used, so install it below and run the bootstrap script.

npm install -g lerna # yarn global add lerna
npm run dev:bootstrap # yarn dev:bootstrap

Creating a Local Version

While you can build your changes manually and copy over files into your extension directory (`~/.vscode/extensions), it's easier to let the VSCode Extension Manager do the grunt work:

  1. Install vsce package - npm install -g vsce
  2. run vsce package to create a .vsix file in your folder
  3. Go to Extension tab in vscode sidebar.
  4. Click on the ... in the top menu.
  5. Choose Select from vsix....
  6. Locate the *.vsix file generated above.

Alternatively if you prefer the CLI use code command:

code --install-extension imba-*.vsix

Enjoy!