ember-cli-sass icon indicating copy to clipboard operation
ember-cli-sass copied to clipboard

SASS rebuilding time is very high

Open aalasolutions-zz opened this issue 5 years ago • 2 comments

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

aalasolutions-zz avatar Nov 04 '19 16:11 aalasolutions-zz

I recently found out about sass-embedded. Much faster than sass,. Or just as fast as node-sass was.

patricklx avatar Aug 10 '22 10:08 patricklx

sass-embedded config:


const sass = require('sass-embedded');


sassOptions: {
      implementation: sass,
      outputStyle: 'expanded',
    },

lifeart avatar Dec 26 '22 15:12 lifeart