angular-presentation/Gruntfile.coffee

19 lines
403 B
CoffeeScript
Raw Normal View History

2014-02-19 03:31:50 +00:00
module.exports = (grunt) ->
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks)
grunt.initConfig {
coffee:
compile:
expand: true
cwd: 'src'
src: [ '*.coffee' ]
dest: 'dist'
ext: '.js'
watch:
coffee:
files: [ 'src/*.coffee' ]
tasks: [ 'coffee:compile' ]
}
grunt.registerTask 'default', 'watch:coffee'