Skip to content

Instantly share code, notes, and snippets.

@mattd
Created November 5, 2012 16:15
Show Gist options
  • Save mattd/4018050 to your computer and use it in GitHub Desktop.
Save mattd/4018050 to your computer and use it in GitHub Desktop.
/*global module:false*/
module.exports = function(grunt) {
grunt.initConfig({
sass: {
dist: {
options: {
compass: true
},
files: {
'dist/build/main.css': 'app/styles/sass/main.scss'
}
},
dev: {
options: {
compass: true,
expanded: true
},
files: {
'app/styles/css/main.css': 'app/styles/sass/main.scss'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-sass');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment