diff options
| author | Phil Crosby | 2014-02-07 17:09:30 -0800 |
|---|---|---|
| committer | Phil Crosby | 2014-02-07 17:09:30 -0800 |
| commit | a8f9658f755e96176e42078e3c9743c565097a27 (patch) | |
| tree | 0c9e520ca92fdca1f54a385169f8e9c180bd2a87 | |
| parent | 25c6298d8e737a9758ce9fd0863e465a3f7e6c7c (diff) | |
| parent | 6d600c9717d81dbac3240141037f0bd22903f6a1 (diff) | |
| download | vimium-a8f9658f755e96176e42078e3c9743c565097a27.tar.bz2 | |
Merge pull request #998 from mieubrisse/build-file-dependency
Moved 'require utils' so utils.coffee can be compiled before being check...
| -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 |
