From 9e66a27c4f895789ba97cb1a9f261ee188d5d7c1 Mon Sep 17 00:00:00 2001 From: Richard Metzler Date: Thu, 10 May 2012 12:35:16 +0200 Subject: [PATCH] add task watch in Cakefile --- Cakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cakefile b/Cakefile index df0d20f..80cd9ab 100644 --- a/Cakefile +++ b/Cakefile @@ -4,6 +4,9 @@ log = console.log task 'build', -> run 'coffee -o lib -c src/*.coffee' +task 'watch', -> + run 'coffee -w -o lib -c src/*.coffee' + task 'test', -> run 'coffee tests/index.coffee'