mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 00:27:50 +00:00
Add _falseOptions module.
This commit is contained in:
@@ -109,9 +109,10 @@ function build(target) {
|
||||
});
|
||||
|
||||
actions.unshift(util.copyFile(path.join(__dirname, '../../fp'), fpPath));
|
||||
actions.push(util.writeFile(path.join(fpPath, '_falseOptions.js'), template._falseOptions()));
|
||||
actions.push(util.writeFile(path.join(fpPath, '_util.js'), template._util()));
|
||||
actions.push(util.writeFile(path.join(target, 'fp.js'), template.fp()));
|
||||
actions.push(util.writeFile(path.join(fpPath, 'convert.js'), template.convert()));
|
||||
actions.push(util.writeFile(path.join(fpPath, '_util.js'), template._util()));
|
||||
|
||||
async.series(actions, onComplete);
|
||||
}
|
||||
|
||||
7
lib/fp/template/modules/_falseOptions.jst
Normal file
7
lib/fp/template/modules/_falseOptions.jst
Normal file
@@ -0,0 +1,7 @@
|
||||
module.exports = {
|
||||
'cap': false,
|
||||
'curry': false,
|
||||
'fixed': false,
|
||||
'immutable': false,
|
||||
'rearg': false
|
||||
});
|
||||
@@ -1,12 +1,5 @@
|
||||
var convert = require('./convert');
|
||||
|
||||
var func = convert('<%= name %>', require('../<%= _.result(mapping.remap, name, name) %>'), {
|
||||
'cap': false,
|
||||
'curry': false,
|
||||
'fixed': false,
|
||||
'immutable': false,
|
||||
'rearg': false
|
||||
});
|
||||
var convert = require('./convert'),
|
||||
func = convert('<%= name %>', require('../<%= _.result(mapping.remap, name, name) %>'), require('./_falseOptions'));
|
||||
|
||||
func.placeholder = require('./placeholder');
|
||||
module.exports = func;
|
||||
|
||||
Reference in New Issue
Block a user