You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The watcher should rebuild vue files when the file's imports are updated. Without this, the rollup build doesn't rebuild when you update .ts and .scss/sass files that are in your build. This was fixed in vuejs/rollup-plugin-vue
Suggested solution
In plugin-vue/src/index.ts line 291, add this code snippet
if (query.src) {
this.addWatchFile(filename);
}
Related plugins
plugin-vue
plugin-vue-jsx
Description
The watcher should rebuild vue files when the file's imports are updated. Without this, the rollup build doesn't rebuild when you update .ts and .scss/sass files that are in your build. This was fixed in vuejs/rollup-plugin-vue
Suggested solution
In plugin-vue/src/index.ts line 291, add this code snippet
if (query.src) {
this.addWatchFile(filename);
}
Alternative
No response
Additional context
Original Issues: vuejs/rollup-plugin-vue#396
Original Fixes: vuejs/rollup-plugin-vue#385
Validations
The text was updated successfully, but these errors were encountered: