diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
commit | cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch) | |
tree | 92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/utila/CakeFile | |
parent | 3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff) |
remove node_modules
Diffstat (limited to 'node_modules/utila/CakeFile')
-rw-r--r-- | node_modules/utila/CakeFile | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/node_modules/utila/CakeFile b/node_modules/utila/CakeFile deleted file mode 100644 index 7e01443b1..000000000 --- a/node_modules/utila/CakeFile +++ /dev/null @@ -1,86 +0,0 @@ - -exec = require('child_process').exec -fs = require 'fs' -sysPath = require 'path' - -task 'compile:coffee', -> - - unless fs.existsSync './scripts/js' - - fs.mkdirSync './scripts/js' - - exec 'node ./node_modules/coffee-script/bin/coffee -bco ./scripts/js ./scripts/coffee', - - (error) -> - - if fs.existsSync '-p' - - fs.rmdirSync '-p' - - if error? - - console.log 'Compile failed: ' + error - - return - -task 'build', -> - - invoke 'compile:coffee' - -# This is in place until we replace the test suite runner with popo -task 'test', -> - - runTestsIn 'scripts/coffee/test', '_prepare.coffee' - -runInCoffee = (path, cb) -> - - exec 'node ./node_modules/coffee-script/bin/coffee ' + path, cb - -runTestsIn = (shortPath, except) -> - - fullPath = sysPath.resolve shortPath - - fs.readdir fullPath, (err, files) -> - - if err then throw Error err - - for file in files - - return if file is except - - fullFilePath = sysPath.resolve(fullPath, file) - shortFilePath = shortPath + '/' + file - - if sysPath.extname(file) is '.coffee' - - runAsTest shortFilePath, fullFilePath - - else if fs.statSync(fullFilePath).isDirectory() - - runTestsIn shortFilePath - - return - -didBeep = no - -runAsTest = (shortPath, fullPath) -> - - runInCoffee fullPath, (error, stdout, stderr) -> - - output = 'Running ' + shortPath + '\n' - - if stderr - - unless didBeep - - `console.log("\007")` - - didBeep = yes - - output += 'Error\n' + stdout + stderr + '\n' - - else if stdout - - output += '\n' + stdout - - console.log output
\ No newline at end of file |