Follow these instructions if you want to update the extension pack.
- Make sure you have npm installed. Run
npm -v
to check the version installed. - Run this command and download vsce
npm install -g @vscode/vsce
- Make sure your directory is in the project folder. Eg it should be something like
F:\Flutter projects\Ultimate-Flutter-Extension-Pack>
- Make the change in package.json regarding the changes in the extensions you want in the extension pack and make sure to update the
version
- Update the changes in README.md & CHANGELOG.md
- Run
vsce package
in the terminal. - If you get the error
File C:\Users\..\.. cannot be loaded because running scripts is disabled on this system.
then run this command in the terminal to give permission -Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
- Run
vsce package
in the terminal again. - Your file will be generated in root directory named
flutter-0.0.{Version no. in your package.json}
. Move this file toversion
folder. - Drop the newly created .vsix file in VSCode MarketPlace by clicking the three dots on the extension and selecting Update option.
- Push the changes in Github.