grunt-contrib-sass icon indicating copy to clipboard operation
grunt-contrib-sass copied to clipboard

Could not find an option named "lineNumbers"

Open sarbjeet-cmsDev opened this issue 7 years ago • 0 comments
trafficstars

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

sarbjeet-cmsDev avatar Apr 27 '18 16:04 sarbjeet-cmsDev