We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now whenever we make an update to a webview we need to do a npm run build on that project, and re-launch the VSCode extension debugger.
npm run build
We could potentially use compound tasks to run both the vite --watch and the esbuild --watch at the same time so this is no longer necessary.
vite --watch
esbuild --watch
https://code.visualstudio.com/docs/editor/tasks#_compound-tasks
The text was updated successfully, but these errors were encountered:
For now, let's document dev workflows that are known to work.
Sorry, something went wrong.
No branches or pull requests
Right now whenever we make an update to a webview we need to do a
npm run build
on that project, and re-launch the VSCode extension debugger.We could potentially use compound tasks to run both the
vite --watch
and theesbuild --watch
at the same time so this is no longer necessary.https://code.visualstudio.com/docs/editor/tasks#_compound-tasks
The text was updated successfully, but these errors were encountered: