Skip to content

Commit f6af2a2

Browse files
committed
disable clean up before bundling
1 parent 7aed6bc commit f6af2a2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/utils/fileSystem.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ export const writeFile = __writeFile;
1313
export const copyFile = __copyFile;
1414
export const exists = __pathExists;
1515
export const mkdir = __mkdirp;
16-
export const rmdir = __remove;
16+
export const rmdir = async (path: string) => {
17+
return Promise.resolve();
18+
};

0 commit comments

Comments
 (0)