gruntjs / grunt-contrib-sass

Compile Sass to CSS.
http://gruntjs.com/
MIT License
848 stars 141 forks source link

Could not find an option named "lineNumbers" #243

Open sarbjeet-cmsDev opened 6 years ago

sarbjeet-cmsDev commented 6 years ago

Here is My Gruntfile

module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), sass: { dist: { options: { debugInfo:false, style: 'expanded', precision: 3, lineNumbers: true }, files: { 'style.css' : 'style.scss' } } }, watch: { css: { files: 'assets/*/.scss', tasks: ['sass'] } } }); grunt.loadNpmTasks('grunt-contrib-sass'); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.registerTask('default',['watch']); }

I am getting error Could not find an option named "lineNumbers".

I need to show line number is Compiled CSS file