diff options
| author | Kevin Today | 2014-02-07 17:02:31 -0800 | 
|---|---|---|
| committer | Kevin Today | 2014-02-07 17:02:31 -0800 | 
| commit | 6d600c9717d81dbac3240141037f0bd22903f6a1 (patch) | |
| tree | 0c9e520ca92fdca1f54a385169f8e9c180bd2a87 /Cakefile | |
| parent | 25c6298d8e737a9758ce9fd0863e465a3f7e6c7c (diff) | |
| download | vimium-6d600c9717d81dbac3240141037f0bd22903f6a1.tar.bz2 | |
Moved 'require utils' so utils.coffee can be compiled before being checked
Diffstat (limited to 'Cakefile')
| -rw-r--r-- | Cakefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1,7 +1,6 @@  fs = require "fs"  path = require "path"  child_process = require "child_process" -{Utils} = require './lib/utils'  spawn = (procName, optArray, silent=false) ->    proc = child_process.spawn procName, optArray @@ -112,6 +111,7 @@ task "test", "run all tests", (options) ->        process.exit 0  task "coverage", "generate coverage report", -> +  {Utils} = require './lib/utils'    temp = require 'temp'    tmpDir = temp.mkdirSync null    jscoverage = spawn "jscoverage", [".", tmpDir].concat optArrayFromDict | 
