Create dir when building if needed.

This commit is contained in:
Ajay Ramachandran 2020-02-04 01:41:47 -05:00
parent 09a33c4252
commit 6d312e7ba7

View file

@ -42,6 +42,7 @@ class BuildManifest {
let result = JSON.stringify(manifest);
if (this.options.pretty) result = JSON.stringify(manifest, null, 2);
fs.mkdirSync(distManifestFile);
fs.writeFileSync(distManifestFile, result);
}
}