Created
October 15, 2014 09:56
-
-
Save oliverchrist/945cef89776eb6e76c5d to your computer and use it in GitHub Desktop.
example of using grunt-newer with grunt-contrib-compass
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
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