Skip to content

Instantly share code, notes, and snippets.

@syropian
Created May 7, 2014 22:19
Show Gist options
  • Save syropian/964eff2ba9dd1889456c to your computer and use it in GitHub Desktop.
Save syropian/964eff2ba9dd1889456c to your computer and use it in GitHub Desktop.
module.exports = function(grunt) {
// 1. All configuration goes here
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
dist: {
options: {
loadPath: require('node-bourbon').includePaths,
style: 'compressed'
},
files: {
'app.css': 'sass/app.scss'
}
}
}
});
// 3. Where we tell Grunt we plan to use this plug-in.
grunt.loadNpmTasks('grunt-contrib-sass');
// 4. Where we tell Grunt what to do when we type "grunt" into the terminal.
grunt.registerTask('default', ['sass']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment