1

i'm using grunt for compiling sass, whis was working fine for a long time but now, i'm facing this issue.

Recently i clean installed my laptop and started it fresh, now i'm getting this issue. So any one can please help me with this.

grunt.initConfig({
    ...
    sass: {
      dev: {
        options: {
          style: 'expanded',
          lineNumbers: true,
          sourcemap: 'none',
          update: true
        }
      }
    }
})
Arun_gok
  • 96
  • 7

1 Answers1

1

Bit late - but I had this exact issue after installing sass via npm - I removed it and installed using gem install sass and everything then worked as expected.

TheFoot
  • 126
  • 1
  • 9