From a96c354f4fae602709d6635d4e1129727f91fbfa Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 6 May 2013 18:04:01 -0700 Subject: [PATCH] Fork with harmony collections enabled --- src/stdlib/task.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdlib/task.coffee b/src/stdlib/task.coffee index 091362d73..f1f417106 100644 --- a/src/stdlib/task.coffee +++ b/src/stdlib/task.coffee @@ -14,7 +14,7 @@ class Task # Equivalent with node --eval "...". blob = "require('coffee-script'); require('task-shell');" - @worker = child_process.fork '--eval', [ blob ], cwd: __dirname + @worker = child_process.fork '--eval', [ blob, '--harmony_collections' ], cwd: __dirname @worker.on 'message', (data) => if @aborted