1

Im using gruntjs/grunt-contrib-cssmin to minify & concat my css files, I wanted to add simple banner on my output css file, but its not working

  cssmin : {    
     distribute : {
       options: {
          banner: 'MY BANNER '
       },

       files: {
         'style.css' : ['src/css/empty.css']
       }
     }
  },

and output is body{background-color:#ff0}.... But expected output MY BANNER body{background-color:#ff0}

Wimal Weerawansa
  • 309
  • 2
  • 15
  • 33
  • 3
    The [github page](https://github.com/gruntjs/grunt-contrib-cssmin) says that "Remove banner option" was in the release notes for v0.11.0. – 76484 Sep 05 '16 at 15:06

0 Answers0