Skip to content

Commit 291f078

Browse files
committed
Create empty manifest when we have no files
1 parent faa596e commit 291f078

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/build-manifest-writer.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ module.exports = manifestConfig => {
1313
let manifest = {};
1414
return results => {
1515
let filteredResults = results.filter(result => result.changed);
16-
if(filteredResults.length === 0) {
17-
return results;
18-
}
19-
2016
manifest = updateManifest(filteredResults, manifest, manifestConfig);
2117
return writeManifest(filteredResults, manifest, manifestConfig);
2218
};

0 commit comments

Comments
 (0)