mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
* require common.jake first * require Objective-J/Cappuccino stuff only when needed (automatically requiring these caused too many problems) * remove useless shebangs, cleanup whitespace
17 lines
395 B
JavaScript
17 lines
395 B
JavaScript
|
|
require("../../../common.jake");
|
|
|
|
var FILE = require("file");
|
|
|
|
$BLENDTASK = "blendtask.j";
|
|
$BUILD_CJS_BLENDTASK = FILE.join($BUILD_CJS_CAPPUCCINO, "lib", "cappuccino", "jake", "blendtask.j");
|
|
|
|
filedir($BUILD_CJS_BLENDTASK, [$BLENDTASK], function()
|
|
{
|
|
cp_r($BLENDTASK, $BUILD_CJS_BLENDTASK);
|
|
});
|
|
|
|
task("build", [$BUILD_CJS_BLENDTASK]);
|
|
|
|
CLOBBER.include($BUILD_CJS_BLENDTASK);
|