We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab5154e commit 747bd88Copy full SHA for 747bd88
1 file changed
scripts/pack.js
@@ -81,7 +81,7 @@ async function addDir(zip, localDir, toDir, filters) {
81
const toPath = `${toDir}${file}`;
82
const stats = await fs.stat(localPath);
83
if (stats.isDirectory()) {
84
- sub(localPath, `${toPath}/`);
+ await sub(localPath, `${toPath}/`);
85
} else {
86
zip.file(toPath, await fs.readFile(localPath));
87
}
0 commit comments