mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 10:07:48 +00:00
Cleanup build files.
Former-commit-id: eac9437648d2bb7260dba5eacfc7076867975134
This commit is contained in:
5
build.js
5
build.js
@@ -6,11 +6,8 @@
|
|||||||
var fs = require('fs'),
|
var fs = require('fs'),
|
||||||
path = require('path');
|
path = require('path');
|
||||||
|
|
||||||
/** The build directory containing the build scripts */
|
|
||||||
var buildPath = path.join(__dirname, 'build');
|
|
||||||
|
|
||||||
/** The minify module */
|
/** The minify module */
|
||||||
var Minify = require(path.join(buildPath, 'minify'));
|
var Minify = require(path.join(__dirname, 'build', 'minify'));
|
||||||
|
|
||||||
/** The lodash.js source */
|
/** The lodash.js source */
|
||||||
var source = fs.readFileSync(path.join(__dirname, 'lodash.js'), 'utf8');
|
var source = fs.readFileSync(path.join(__dirname, 'lodash.js'), 'utf8');
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
/** The minimal license/copyright template */
|
/** The minimal license/copyright template */
|
||||||
var licenseTemplate =
|
var licenseTemplate =
|
||||||
'/*!\n' +
|
'/*!\n' +
|
||||||
' Lo-Dash @VERSION github.com/bestiejs/lodash/blob/master/LICENSE.txt\n' +
|
' Lo-Dash @VERSION lodash.com/license\n' +
|
||||||
' Underscore.js 1.3.3 github.com/documentcloud/underscore/blob/master/LICENSE\n' +
|
' Underscore.js 1.3.3 github.com/documentcloud/underscore/blob/master/LICENSE\n' +
|
||||||
'*/';
|
'*/';
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
|
|
||||||
/** Used to minify string values used by `compileIterator` and its options */
|
/** Used to minify string values used by `compileIterator` and its options */
|
||||||
var compiledValues = [
|
var compiledValues = [
|
||||||
'arrays',
|
|
||||||
'objects'
|
'objects'
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -66,7 +65,6 @@
|
|||||||
'hasDontEnumBug',
|
'hasDontEnumBug',
|
||||||
'inLoop',
|
'inLoop',
|
||||||
'init',
|
'init',
|
||||||
'iterate',
|
|
||||||
'iteratedObject',
|
'iteratedObject',
|
||||||
'loopExp',
|
'loopExp',
|
||||||
'object',
|
'object',
|
||||||
|
|||||||
Reference in New Issue
Block a user