Ignore more files.

This commit is contained in:
John-David Dalton
2016-01-27 01:18:45 -08:00
parent 6a4164d9f3
commit 71702d058c

View File

@@ -79,7 +79,13 @@ function build(target) {
// Glob existing lodash module paths.
var modulePaths = glob.sync(path.join(target, '*.js'), {
'nodir': true,
'ignore': path.join(target, '_*.js')
'ignore': [
'_*.js',
'core.js',
'fp.js'
].map(function(filename) {
return path.join(target, filename);
})
});
// Add FP alias and remapped module paths.