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

@ -36,6 +36,7 @@ const ALIAS_ENTRIES = [
const files = fs.readdirSync(folderPath);
const targetFile = files.find((file) => {
const ext = path.extname(file);
return ['.vue', '.js'].includes(ext) && path.basename(file, ext).toLowerCase() === fName.toLowerCase();
});