Arun_gok
Arun_gok

Reputation: 96

Grunt | Could not find an option named "line-numbers" | dart-sass

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
        }
      }
    }
})

Upvotes: 1

Views: 887

Answers (1)

TheFoot
TheFoot

Reputation: 126

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.

Upvotes: 1

Related Questions