Skip to content

Instantly share code, notes, and snippets.

@mdellanoce
Last active December 16, 2015 10:39
Show Gist options
  • Save mdellanoce/5421923 to your computer and use it in GitHub Desktop.
Save mdellanoce/5421923 to your computer and use it in GitHub Desktop.
Modular Cakefile
fs = require('fs')
tasks = fs.readdirSync('tasks')
require('./tasks/' + task.replace(/\.coffee$/, '')) for task in tasks
# This file goes in the "tasks" folder
task('test', ->
#Run tests, or whatever
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment