This repository was archived by the owner on Aug 2, 2024. It is now read-only.
This repository was archived by the owner on Aug 2, 2024. It is now read-only.
Hot Reload #185
Closed
Description
Extension/feature description
After running example following the given README.md
:
# Copy sample extension locally
npx degit microsoft/vscode-webview-ui-toolkit-samples/frameworks/hello-world-vue hello-world
# Navigate into sample directory
cd hello-world
# Install dependencies for both the extension and webview UI source code
npm run install:all
# Build webview UI source code
npm run build:webview
# Open sample in VS Code
code .
-
When I press F5 there is no hot reload; yes there is a new task
npm run watch
but it doesn't care about changes towebview-ui
so extension is not reloaded. -
Even when the extension is reloaded the
webview
invscode
won't reflect any changes without opening theHello World
command; it would be cool to auto-reload this also.
Use case
Pleasantly developing extensions.