#!/usr/bin/env node /* ***** BEGIN LICENSE BLOCK ***** * Distributed under the BSD license: * * Copyright (c) 2010, Ajax.org B.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of Ajax.org B.V. nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * ***** END LICENSE BLOCK ***** */ var fs = require("fs"); var path = require("path"); if (!fs.existsSync) fs.existsSync = path.existsSync; else path.existsSync = fs.existsSync; var copy = require('dryice').copy; var ACE_HOME = __dirname; var BUILD_DIR = ACE_HOME + "/build"; function main(args) { var type = "minimal"; args = args.map(function(x) { if (x[0] == "-" && x[1] != "-") return "-" + x; return x; }); if (args[2] && (args[2][0] != "-" || args[2].indexOf("h") != -1)) type = args[2]; var i = args.indexOf("--target"); if (i != -1 && args[i+1]) BUILD_DIR = args[i+1]; if (args.indexOf("--h") == -1) { if (type == "minimal") { buildAce({ compress: args.indexOf("--m") != -1, noconflict: args.indexOf("--nc") != -1, shrinkwrap: args.indexOf("--s") != -1 }); } else if (type == "normal") { ace(); } else if (type == "demo") { demo(); } else if (type == "bm") { bookmarklet(); } else if (type == "full") { demo(ace()); bookmarklet(); } } console.log("--- Ace Dryice Build Tool ---"); console.log(""); console.log("Options:"); console.log(" minimal Places necessary Ace files out in build dir; uses configuration flags below [default]"); console.log(" normal Runs four Ace builds--minimal, minimal-noconflict, minimal-min, and minimal-noconflict-min"); console.log(" demo Runs demo build of Ace"); console.log(" bm Runs bookmarklet build of Ace"); console.log(" full all of above"); console.log("args:"); console.log(" --target ./path path to build folder"); console.log("flags:"); console.log(" --h print this help"); console.log(" --m minify"); console.log(" --nc namespace require"); console.log(" --s shrinkwrap (combines all output files into one)"); console.log(""); if (BUILD_DIR) console.log(" output generated in " + type + __dirname + "/" + BUILD_DIR) } function bookmarklet() { var targetDir = BUILD_DIR + "/textarea"; copy({ source: "build_support/editor_textarea.html", dest: targetDir + '/editor.html' }); copy({ source: "build_support/style.css", dest: targetDir + '/style.css' }); buildAce({ targetDir: targetDir + "/src", ns: "__ace_shadowed__", exportModule: "ace/ext/textarea", compress: false, noconflict: true, suffix: "", name: "ace-bookmarklet", workers: [], keybindings: [] }); } function ace() { console.log('# ace ---------'); // uncompressed var project = buildAce({ compress: false, noconflict: false }); buildAce({ compress: false, noconflict: true }); // compressed buildAce({ compress: true, noconflict: false }); buildAce({ compress: true, noconflict: true }); console.log('# ace License | Readme | Changelog ---------'); copy({ source: ACE_HOME + "/build_support/editor.html", dest: BUILD_DIR + "/editor.html" }); copy({ source: ACE_HOME + "/LICENSE", dest: BUILD_DIR + "/LICENSE" }); copy({ source: ACE_HOME + "/ChangeLog.txt", dest: BUILD_DIR + "/ChangeLog.txt" }); return project; } function demo(project) { project = project || buildAce({ compress: false, noconflict: false, coreOnly: true }); console.log('# kitchen sink ---------'); var version, ref; try { version = JSON.parse(fs.readFileSync(ACE_HOME + "/package.json")).version; ref = fs.readFileSync(ACE_HOME + "/.git-ref").toString(); } catch(e) { ref = ""; version = ""; } function changeComments(data) { return (data .replace(//g, "") .replace(/PACKAGE\-\->|