Skip to content

Instantly share code, notes, and snippets.

@tpitre
Created November 17, 2014 19:57
Show Gist options
  • Save tpitre/565df65316578d53a1e7 to your computer and use it in GitHub Desktop.
Save tpitre/565df65316578d53a1e7 to your computer and use it in GitHub Desktop.
Grunt: SASS Setup
module.exports = {
options: {
outputStyle: 'compressed',
imagePath: "../../<%= paths.dest.images %>",
sourceMap: false,
includePaths: require('node-bourbon').includePaths,
includePaths: require('node-neat').includePaths
},
dist: {
files: {
"<%= paths.dest.css %>/style.css": "<%= paths.src.css %>/style.scss"
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment