Last active
April 5, 2023 14:09
-
-
Save brianjo/594584937c8e7f732ebeca2030aef58b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install vsce | |
| npm install -g @vscode/vsce\n | |
| cd extensionfolder | |
| vsce package | |
| # Note: To get this to work on src/extenson.tsx source I needed to | |
| # change it to src/extension.js. I haven't had time to debug it properly. | |
| # This should create a (extention).vsix file in the root folder. | |
| # Open command pallet (F1 on Mac) | |
| # Find the command - Extensions: Install from VSIX... | |
| # Navigate to (extension).vsix file in root. | |
| # View the installed extension in your Extensions pane. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment