gruntjs/grunt-contrib-stylus

Is there any options in Grunt for --disable-cache flag ?

yushengh opened this issue · 2 comments

see the title

Can grunt-contrib-stylus compile stylus like "stylus --disable-cache dir/"?

shama commented

You can set the cache option to false or create your own that sets it:

options: {
  cache: grunt.option('disable-cache')
}