This commit is contained in:
Joseph Garrone
2024-05-20 21:10:58 +02:00
parent 3c4bbf8aa7
commit 76542e6859
2 changed files with 30 additions and 7 deletions

View File

@ -43,12 +43,6 @@ fs.writeFileSync(
)
);
const destSrcDirPath = pathJoin(rootDirPath, "dist", "src");
fs.rmSync(destSrcDirPath, { recursive: true, force: true });
fs.cpSync(pathJoin(rootDirPath, "src"), destSrcDirPath, { recursive: true });
const commonThirdPartyDeps = (() => {
// For example [ "@emotion" ] it's more convenient than
// having to list every sub emotion packages (@emotion/css @emotion/utils ...)