diff --git a/coffeescript/05_compiling.html b/coffeescript/05_compiling.html index d1206b7..5c49d95 100644 --- a/coffeescript/05_compiling.html +++ b/coffeescript/05_compiling.html @@ -102,7 +102,7 @@
option '-o', '--output [DIR]', 'output dir'
-task 'build', 'Build lib/ from src/', ->
+task 'build', 'Build lib/ from src/', (options) ->
# Now we have access to a `options` object
coffee = spawn 'coffee', ['-c', '-o', options.output or 'lib', 'src']
coffee.stderr.on 'data', (data) ->
@@ -130,4 +130,4 @@ Server side support