ember-cli-sass
ember-cli-sass copied to clipboard
SASS rebuilding time is very high
Hi,
I am working on an addon called ember-element-ui https://github.com/aalasolutions/ember-element-ui which can be installed ember install ember-element-ui
Its built times are very high. I have added this plugin in a 3rd application https://github.com/aalasolutions/ember-medical-inventory and yet it is slow there as well.
I was looking for the issues and found about node-sass but looks like it will no longer work.
Any thoughts
I recently found out about sass-embedded. Much faster than sass,. Or just as fast as node-sass was.
sass-embedded
config:
const sass = require('sass-embedded');
sassOptions: {
implementation: sass,
outputStyle: 'expanded',
},