Add index.js and lodash.js to the list of ignored files when generating fp modules.

This commit is contained in:
John-David Dalton
2016-01-28 23:57:58 -08:00
parent 82e9b4197b
commit e7c3afc1e5

View File

@@ -82,7 +82,9 @@ function build(target) {
'ignore': [
'_*.js',
'core.js',
'fp.js'
'fp.js',
'index.js',
'lodash.js'
].map(function(filename) {
return path.join(target, filename);
})