Skip to content

Commit 976f0c8

Browse files
fix: Add a space after the period in warning message. (#36)
1 parent a2acab9 commit 976f0c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vite-plugin-svelte/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export default function vitePluginSvelte(inlineOptions?: Partial<Options>): Plug
226226
buildEnd() {
227227
if (pkg_export_errors.size > 0) {
228228
log.warn(
229-
`The following packages did not export their \`package.json\` file so we could not check the "svelte" field.If you had difficulties importing svelte components from a package, then please contact the author and ask them to export the package.json file.`,
229+
`The following packages did not export their \`package.json\` file so we could not check the "svelte" field. If you had difficulties importing svelte components from a package, then please contact the author and ask them to export the package.json file.`,
230230
Array.from(pkg_export_errors, (s) => `- ${s}`).join('\n')
231231
);
232232
}

0 commit comments

Comments
 (0)