Created
August 3, 2014 20:32
-
-
Save maestrow/f52b02ac84267f438caa to your computer and use it in GitHub Desktop.
Modular Cakeflle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://www.mikedellanoce.com/2013/04/coffeescript-tip-modular-cakefile.html | |
fs = require('fs') | |
tasks = fs.readdirSync('tasks') | |
require('./tasks/' + task.replace(/\.coffee$/, '')) for task in tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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