module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), sass: { dist: { options: { style: 'compressed' }, files: [{ expand: true, cwd: 'assets/styles', src: ['**/*.sass'], dest: 'public/css', ext: '.css' }] } }, coffee: { options: { sourceMap: true, style: 'compressed' }, files: { expand: true, flatten: true, cwd: 'assets/scripts', src: ['*.coffee'], dest: 'public/js', ext: '.js' } }, watch: { css: { files: ['assets/styles/**/*.sass'], tasks: ['sass'], options: { atBegin: true, spawn: false } }, js: { files: ['assets/scripts/**/*.js'], tasks: ['coffee'], options: { atBegin: true, spawn: false } } } }); // Load plugins. grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-sass'); grunt.loadNpmTasks('grunt-contrib-coffee'); // CLI tasks. grunt.registerTask('default', ['sass', 'coffee']); };