From 4c7989743a15d09861dc651a461ea72c0a08ca3b Mon Sep 17 00:00:00 2001 From: Kit Cambridge Date: Sun, 22 Apr 2012 21:28:38 -0600 Subject: [PATCH] `build.js`: s/Lodash/Lo-Dash. Former-commit-id: 831e1ac205c328c9d0353dc2a036d4226b9170a5 --- build.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.js b/build.js index 55e506b8e..51b49482c 100755 --- a/build.js +++ b/build.js @@ -19,7 +19,7 @@ preprocess = require(path.join(buildPath, 'pre-compile')), postprocess = require(path.join(buildPath, 'post-compile')), - /* The pre-processed Lodash source. */ + /* The pre-processed Lo-Dash source. */ source = preprocess(fs.readFileSync(path.join(__dirname, 'lodash.js'), 'utf8')); /* Create the destination directory if it doesn't exist. */ @@ -27,7 +27,7 @@ fs.mkdirSync(distPath); } - /* Compress and `gzip` Lodash using the Closure Compiler. */ + /* Compress and `gzip` Lo-Dash using the Closure Compiler. */ compile(source, function (exception, results) { if (exception) { throw exception; @@ -46,7 +46,7 @@ }); }); - /* Compress and `gzip` Lodash using UglifyJS. */ + /* Compress and `gzip` Lo-Dash using UglifyJS. */ uglify(source, function (results) { var source = postprocess(results); fs.writeFileSync(path.join(distPath, 'lodash.uglify.js'), source);