aboutsummaryrefslogtreecommitdiffstats
path: root/Cakefile
diff options
context:
space:
mode:
authorPhil Crosby2012-06-10 23:38:35 -0700
committerPhil Crosby2012-06-12 22:00:34 -0700
commite8468e12f867cb71eb0d2b50c4904a1236b50e47 (patch)
treec1002de1e819fec28306eff1e5f7375fdc013047 /Cakefile
parentc7ce35423e3871dc121830f38de9cd79aebd704a (diff)
downloadvimium-e8468e12f867cb71eb0d2b50c4904a1236b50e47.tar.bz2
port clipboard.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 44d2d6ec..9bb0183d 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"]
+ coffee = spawn "coffee", ["tests", "background_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"]
+ coffee = spawn "coffee", ["-cw", "tests", "background_scripts", "lib"]
coffee.stdout.on "data", (data) -> console.log data.toString().trim()
task "test", "run all unit tests", ->