Skip to content

Commit 4b49a8f

Browse files
committed
Update VS Code version documentation
1 parent 9718aa5 commit 4b49a8f

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

docs/vscode-version.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,11 @@ Also consider what percentage of our users are using each VS Code version. This
2727
To provide a good experience to users, it is recommented to update the `MIN_VERSION` in `extension.ts` first and release, and then update the `vscode` version in `package.json` and release again.
2828
By staggering this update across two releases it gives users on older VS Code versions a chance to upgrade before it silently refuses to upgrade them.
2929

30-
When updating the minimum version in `package.json`, you should also follow the additional steps listed below.
31-
32-
### Updating the Chromium target version
33-
34-
For the webview code, we use [esbuild](https://esbuild.github.io/) to bundle the code. This requires a target version of Chromium to be specified.
35-
This version should be the same as the version of Chromium that is bundled with the new minimum VS Code version. To update
36-
the version, run:
30+
After updating the minimum version in `package.json`, make sure to also run the following command to update any generated
31+
files dependent on this version:
3732

3833
```bash
39-
npx ts-node scripts/generate-chromium-version.ts
34+
npm run generate
4035
```
4136

4237
#### Troubleshooting

0 commit comments

Comments
 (0)