aboutsummaryrefslogtreecommitdiffstats
path: root/Cakefile
diff options
context:
space:
mode:
authorPhil Crosby2012-06-11 19:02:55 -0700
committerPhil Crosby2012-06-12 22:00:35 -0700
commitf33de347f0de1448446eac462892addbe7a3c461 (patch)
treea91bb72412d0d74e07a43cea834a3642a6ecdb76 /Cakefile
parenta24a6274b35709002700b3e1d8b2c9ac4376e500 (diff)
downloadvimium-f33de347f0de1448446eac462892addbe7a3c461.tar.bz2
Port link_hints.js to coffeescript
Diffstat (limited to 'Cakefile')
-rw-r--r--Cakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cakefile b/Cakefile
index 9bb0183d..4a379ab3 100644
--- a/Cakefile
+++ b/Cakefile
@@ -2,11 +2,11 @@ fs = require "fs"
{spawn, exec} = require "child_process"
task "build", "compile all coffeescript files to javascript", ->
- coffee = spawn "coffee", ["tests", "background_scripts", "lib"]
+ coffee = spawn "coffee", ["tests", "background_scripts", "content_scripts", "lib"]
coffee.stdout.on "data", (data) -> console.log data.toString().trim()
task "autobuild", "continually rebuild coffeescript files using coffee --watch", ->
- coffee = spawn "coffee", ["-cw", "tests", "background_scripts", "lib"]
+ coffee = spawn "coffee", ["-cw", "tests", "background_scripts", "content_scripts", "lib"]
coffee.stdout.on "data", (data) -> console.log data.toString().trim()
task "test", "run all unit tests", ->