adopted-ember-addons / ember-cli-sass

Use node-sass to preprocess your ember-cli app's files, with support for sourceMaps and include paths
MIT License
276 stars 92 forks source link

SASS rebuilding time is very high #211

Open aalasolutions-zz opened 4 years ago

aalasolutions-zz commented 4 years ago

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

patricklx commented 2 years ago

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

lifeart commented 1 year ago

sass-embedded config:


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

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