Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: "path.basename is not a function" #329

Open
hatemhosny opened this issue Apr 1, 2025 · 0 comments · Fixed by vuejs/language-tools#5304
Open

Error: "path.basename is not a function" #329

hatemhosny opened this issue Apr 1, 2025 · 0 comments · Fixed by vuejs/language-tools#5304

Comments

@hatemhosny
Copy link

In the Vue REPL, any edits in the <template> would result in this error & with failure to autocomplete:

Image

The error is related to this line of code:
https://github.com/vuejs/language-tools/blob/7107d0ac24ccb292f9a876fba85dc835c4439788/packages/typescript-plugin/lib/requests/utils.ts#L43

export function getSelfComponentName(fileName: string) {
+	const baseName = path.basename(fileName);
	return capitalize(camelize(baseName.slice(0, baseName.lastIndexOf('.'))));
}

It seems that path-browserify polyfill is not working properly here.

Patching it to something like this fixed it:

export function getSelfComponentName(fileName: string) {
+	const baseName = fileName.split('/').pop() ?? '';
-	const baseName = path.basename(fileName);
	return capitalize(camelize(baseName.slice(0, baseName.lastIndexOf('.'))));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants