Skip to content

Commit

Permalink
fix: remove unused files for bun
Browse files Browse the repository at this point in the history
  • Loading branch information
exKAZUu committed Aug 16, 2024
1 parent 312dfd2 commit 3967834
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/generators/yarnrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ export async function generateYarnrcYml(config: PackageConfig): Promise<void> {
await promisePool.run(() =>
fs.promises.rm(path.resolve(config.dirPath, '.yarn'), { force: true, recursive: true })
);
await promisePool.run(() =>
fs.promises.rm(path.resolve(config.dirPath, 'yarn.lock'), { force: true, recursive: true })
);
return;
}

Expand Down

0 comments on commit 3967834

Please sign in to comment.