Skip to content

Instantly share code, notes, and snippets.

@tybenz
Created November 18, 2013 18:04
Show Gist options
  • Save tybenz/7532427 to your computer and use it in GitHub Desktop.
Save tybenz/7532427 to your computer and use it in GitHub Desktop.
/* vim: set tabstop=4 softtabstop=4 shiftwidth=4 expandtab: */
var path = require( 'path' ),
sys = require('sys'),
exec = require('child_process').exec;
module.exports = function ( grunt ) {
grunt.initConfig({
init: {},
express: {
custom: {
options: {
watch: {
interrupt: true,
atBegin: true,
event: [ 'added', 'changed' ]
},
serverreload: true,
bases: 'public',
server: path.resolve( 'app' ),
}
}
},
sass: {
dist: {
options: {
style: 'expanded'
},
files: [{
expand: true,
cwd: 'sass',
src: [ '*.scss' ],
dest: 'public/stylesheets',
ext: '.css'
}]
}
},
watch: {
css: {
files: '**/*.scss',
tasks: ['sass']
}
},
shell: {
init_bourbon: {
command: 'bundle install && cd sass && bourbon install'
}
}
});
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-contrib-sass' );
grunt.loadNpmTasks( 'grunt-express' );
grunt.loadNpmTasks( 'grunt-shell' );
grunt.registerTask( 'default', [ 'express', 'express-keepalive' ] );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment