[skip ci] fix getPluginTarget

This commit is contained in:
V
2023-08-20 15:14:28 +02:00
parent 98a03c8862
commit 817f0f7473

View File

@ -22,7 +22,7 @@
*/ */
export function getPluginTarget(filePath) { export function getPluginTarget(filePath) {
const pathParts = filePath.split(/[/\\]/); 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 identifier = pathParts.at(-1).replace(/\.tsx?$/, "");
const identiferBits = identifier.split("."); const identiferBits = identifier.split(".");