Skip to content

Instantly share code, notes, and snippets.

@oliverchrist
Created October 15, 2014 09:56
Show Gist options
  • Save oliverchrist/945cef89776eb6e76c5d to your computer and use it in GitHub Desktop.
Save oliverchrist/945cef89776eb6e76c5d to your computer and use it in GitHub Desktop.
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'
}
},
},
});
grunt.registerTask('pre-commit', [
'newer:jshint',
'newer:jscs',
'newer:scsslint',
'newer:compass:dist'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment