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
I am testing this plugin in a folders structure with jade files (with includes, mixins... and dependencies between them):
-jade
--mixins
--includes
--layouts
--views
It seems to work perfectly when the match only affect a view, but as I add more matches to more views, when I change some file in a subfolder, the time it takes to compile the view increases coming to take 9-10 seconds to change.. Is this behavior normal?? Is there any solution to decrease the time?
I think that some circular dependencies are included in your code.
Because your debug output says that "stocks-see-favourites.jade is depended by itself".
(NOTE: Related files "XXX" (from "YYY") means that "XXX depended by YYY")
You are right, some of dependencies are circular as you say, and I can see another problem now, the dependencies multiply every time I add a match in a view.
I think my tasks are not right, I will try to find the right way, thanks!
Hi,
I am testing this plugin in a folders structure with jade files (with includes, mixins... and dependencies between them):
-jade
--mixins
--includes
--layouts
--views
It seems to work perfectly when the match only affect a view, but as I add more matches to more views, when I change some file in a subfolder, the time it takes to compile the view increases coming to take 9-10 seconds to change.. Is this behavior normal?? Is there any solution to decrease the time?
gulp.watch('app/jade/**/*.jade', ['compileJade']);
Thanks!
The text was updated successfully, but these errors were encountered: