Skip to content

Commit

Permalink
Update LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
ivogabe committed Dec 2, 2015
1 parent 681d47d commit 973e473
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ var Project = (function () {
}
}
});
return vfs.src(this.config.files.map(function (file) { return path.resolve(configPath, file); }), { base: base })
var vinylOptions = { base: base, allowEmpty: true };
return vfs.src(this.config.files.map(function (file) { return path.resolve(configPath, file); }), vinylOptions)
.pipe(checkMissingFiles);
};
return Project;
Expand Down

0 comments on commit 973e473

Please sign in to comment.