diff --git a/src/esbuild.ts b/src/esbuild.ts index 5b86518..30b1ff7 100644 --- a/src/esbuild.ts +++ b/src/esbuild.ts @@ -195,7 +195,7 @@ export async function initESBuild( logChannel.debug(`Moving files to ${targetPath}`); try { - //await fs.promises.mkdir(path.dirname(targetPath)); + await fs.promises.mkdir(path.dirname(targetPath)); await fs.promises.rename(path.join(temp, 'package'), targetPath); } catch (e) { logChannel.debug(`Error moving files to ${targetPath}`, e);