Skip to content

Commit

Permalink
fix: postbuild recursively change ext consistent-return
Browse files Browse the repository at this point in the history
Signed-off-by: Spencer Norman <spencern@gmail.com>
  • Loading branch information
spencern committed Nov 27, 2019
1 parent fac9451 commit 3a358bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions package/scripts/postbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ async function recursivelyChangeExtension(fullDirPath, ext, newExt) {

await fse.copy(childPath, childPath.replace(`.${ext}`, `.${newExt}`));
await fse.remove(childPath);

return null;
});
await Promise.all(promises);
}
Expand Down

0 comments on commit 3a358bb

Please sign in to comment.