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
This addon forces a sass recompilation for any changes that happen while in ember server modus, even though no sass files changed.
How to reproduce
create a new ember app
install ember-uikit ember install ember-uikit
start ember server
change something inside a .js file for instance controller/application.js
observe server logs and see that a SassCompiler did run:
Since our app has quite lot to compile it adds 3-4 seconds of rebuild time everytime we change something not sass related. Which slows down productivity.
Is there something I can do to change it that it only recompiles when a scss file did change?
The text was updated successfully, but these errors were encountered:
ember-uikit doesn't do any compilation, that is entirely handled by ember-cli-sass which currently does have the issue you're describing: adopted-ember-addons/ember-cli-sass#214
I'll close this issue since SCSS compilation is not a concern of this addon.
This addon forces a sass recompilation for any changes that happen while in ember server modus, even though no sass files changed.
How to reproduce
ember install ember-uikit
.js
file for instancecontroller/application.js
Since our app has quite lot to compile it adds 3-4 seconds of rebuild time everytime we change something not sass related. Which slows down productivity.
Is there something I can do to change it that it only recompiles when a scss file did change?
The text was updated successfully, but these errors were encountered: