Add fp/placeholder module.

This commit is contained in:
John-David Dalton
2016-04-02 10:57:29 -07:00
parent 2b58525816
commit 012bff97e0
4 changed files with 13 additions and 5 deletions

View File

@@ -97,8 +97,7 @@ function build(target) {
_.each([mapping.aliasToReal, mapping.remap], function(data) {
_.forOwn(data, function(realName, alias) {
var modulePath = path.join(target, alias + '.js');
if (!_.startsWith(alias, '_') &&
!_.includes(modulePaths, modulePath)) {
if (!_.includes(modulePaths, modulePath)) {
modulePaths.push(modulePath);
}
});