[skip ci] fix getPluginTarget

This commit is contained in:
V 2023-08-20 15:14:28 +02:00
parent 98a03c8862
commit 817f0f7473
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905

View file

@ -22,7 +22,7 @@
*/
export function getPluginTarget(filePath) {
const pathParts = filePath.split(/[/\\]/);
if (/^index\.tsx?$/.test(filePath.at(-1))) pathParts.pop();
if (/^index\.tsx?$/.test(pathParts.at(-1))) pathParts.pop();
const identifier = pathParts.at(-1).replace(/\.tsx?$/, "");
const identiferBits = identifier.split(".");