Skip to content
This repository was archived by the owner on Apr 27, 2026. It is now read-only.

Commit 5d4f2d6

Browse files
authored
fix(core): .sqlproj is a valid project extension (#523)
1 parent 398ccbc commit 5d4f2d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/utils/src/lib/utility-functions

packages/utils/src/lib/utility-functions/glob.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const globOptions = {
99
};
1010

1111
export function projPattern(path: string): string {
12-
return `${path}/**/*.@(cs|fs|vb)proj`;
12+
return `${path}/**/*.@(cs|fs|vb|sql)proj`;
1313
}
1414

1515
/**

0 commit comments

Comments
 (0)