Created
November 17, 2014 19:57
-
-
Save tpitre/565df65316578d53a1e7 to your computer and use it in GitHub Desktop.
Grunt: SASS Setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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