newscoop/JS-Scoopwriter

View on GitHub
grunt/coffee.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
    options: {
        sourceMap: true,
        sourceRoot: ''
    },
    dist: {
        files: [{
                expand: true,
                cwd: '<%= source %>/scripts',
                src: '{,*/}*.coffee',
                dest: '.tmp/scripts',
                ext: '.js'
            }]
    },
    test: {
        files: [{
                expand: true,
                cwd: 'test/spec',
                src: '{,*/}*.coffee',
                dest: '.tmp/spec',
                ext: '.js'
            }]
    }
};