newer-stylus-grunt is a set of helpers which enables STYLUS compilation when using grunt-newer.
npm install newer-stylus-grunt
var newerStylusGrunt = require('newer-stylus-grunt');
// Optional
newerStylusGrunt.setGlobalInclude({
'src/styles/common.styl': [
'home.styl',
],
});
module.exports = function(grunt) {
grunt.initConfig({
newer: {
options: {
override: newerStylusGrunt,
}
},
//Anything else
});
};