Lint fixes

This commit is contained in:
tugcekucukoglu 2024-06-14 17:54:21 +03:00
parent 9e2ece71af
commit 4479b202f6
4 changed files with 4 additions and 0 deletions

View file

@ -86,6 +86,7 @@ export async function renameDTSFile(dir, newName) {
await renameDTSFile(fullPath, newName);
} else if (entry.name.endsWith('.d.ts')) {
const newFullPath = path.join(dir, `${newName}.d.ts`);
await fs.rename(fullPath, newFullPath);
}
}