diff options
| author | Phil Crosby | 2012-06-11 19:02:55 -0700 | 
|---|---|---|
| committer | Phil Crosby | 2012-06-12 22:00:35 -0700 | 
| commit | f33de347f0de1448446eac462892addbe7a3c461 (patch) | |
| tree | a91bb72412d0d74e07a43cea834a3642a6ecdb76 /Cakefile | |
| parent | a24a6274b35709002700b3e1d8b2c9ac4376e500 (diff) | |
| download | vimium-f33de347f0de1448446eac462892addbe7a3c461.tar.bz2 | |
Port link_hints.js to coffeescript
Diffstat (limited to 'Cakefile')
| -rw-r--r-- | Cakefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -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", -> | 
