Skip to content

Instantly share code, notes, and snippets.

@oliverchrist
oliverchrist / gist:945cef89776eb6e76c5d
Created October 15, 2014 09:56
example of using grunt-newer with grunt-contrib-compass
grunt.initConfig({
compass: {
dist: {
src: '<%= yeoman.app %>/styles/**/*.scss',
options: {
sassDir: '<%= yeoman.app %>/styles',
cssDir: '<%= yeoman.dist %>/styles',
relativeAssets: false,
outputStyle: 'nested'
}