module.exports = function(grunt) { grunt.initConfig({ // [other stuff...] compass: { options: { sassDir: 'sass', javascriptsDir: 'javascripts', fontsDir: 'fonts', outputStyle: 'compressed', environment: 'production' }, rTheme: { options: { importPath: 'sass/r-only', httpPath: '/wp-content/themes/r/', cssDir: 'stylesheets', imagesDir: 'img' } }, fTheme: { options: { importPath: '../f/sass/', cssDir: '../f/stylesheets', imagesDir: '../f/img', httpPath: '/wp-content/themes/f/' } } }, setPHPConstant: { styles: { constant: 'R_STYLES_UPDATED', value: '<%= grunt.template.today("yyyymmddHHMMss") %>', file: 'functions.php' } }, // [other stuff...] // Tasks grunt.registerTask('styles', ['compass', 'setPHPConstant:styles']); };