Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 7f0b492

Browse files
robertsLandojesec
authored andcommitted
fix: improve unlikelyJavascript check
1 parent 4ed2ee4 commit 7f0b492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/walker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const strictVerify = Boolean(process.env.PKG_STRICT_VER);
7272
const win32 = process.platform === 'win32';
7373

7474
function unlikelyJavascript(file: string) {
75-
return ['.css', '.html', '.json'].includes(path.extname(file));
75+
return ['.css', '.html', '.json', '.vue'].includes(path.extname(file));
7676
}
7777

7878
function isPublic(config: PackageJson) {

0 commit comments

Comments
 (0)