Skip to content

Commit

Permalink
added Gruntfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jbenet committed Dec 8, 2012
1 parent 0411071 commit 03563ed
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Gruntfile.coffee
@@ -0,0 +1,21 @@
module.exports = (grunt) ->

# Project configuration.
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'

coffee:
tasks:
src: 'coffee/tasks/**/*.coffee'
dest: 'tasks'
# grunt expects npm modules to have a top-level tasks directory, in js

watch:
files: 'coffee/**/*.coffee'
tasks: 'coffee'

# Load tasks
grunt.loadNpmTasks 'grunt-coffee'

# Register tasks
grunt.registerTask 'default', ['coffee']

0 comments on commit 03563ed

Please sign in to comment.