module.exports = (grunt) -> grunt.initConfig pkg: grunt.file.readJSON('package.json') coffee: server: files: [ { 'app.js': 'app.coffee' }, { expand: true, cwd: 'src/server', src: ['**/*.coffee'], dest: 'lib/', ext: '.js' } ] client: options: bare: false files: [ { expand: true, cwd: 'src/client', src: ['*.coffee'], dest: 'public/js/lib/', ext: '.js' } ] concat: options: separator: ";" vendor: src: