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
{{ message }}
This repository has been archived by the owner on Dec 26, 2018. It is now read-only.
style-rewriter.js makes use of a lru cache to avoid reprocessing CSS unnecessarily.
Unfortunately if you use additional PostCSS plugins and you depend on gulp.watch or similar to re-process your files as needed the lru cache prevents recompilation when recompilation is necessary.
In my case I use postcss-mixins with the mixinsDir option. I have all my mixins in a separate directory. Unfortunately vuefiy is not aware of this mixin dir, therefore on re-runs of vueify triggered by gulp-watch, the cached version of the processed CSS gets returned if all I changed was a mixin.
I disabled the lru cache in my fork of vueify and this fixes the problem.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
style-rewriter.js
makes use of a lru cache to avoid reprocessing CSS unnecessarily.Unfortunately if you use additional PostCSS plugins and you depend on gulp.watch or similar to re-process your files as needed the lru cache prevents recompilation when recompilation is necessary.
In my case I use
postcss-mixins
with themixinsDir
option. I have all my mixins in a separate directory. Unfortunately vuefiy is not aware of this mixin dir, therefore on re-runs of vueify triggered by gulp-watch, the cached version of the processed CSS gets returned if all I changed was a mixin.I disabled the lru cache in my fork of vueify and this fixes the problem.
The text was updated successfully, but these errors were encountered: