Skip to content

Commit 38816b9

Browse files
authored
Merge pull request #3355 from github/koesie10/fix-view-compilation
Recompile view when shared files change
2 parents 70b8ddf + 1ce6526 commit 38816b9

File tree

1 file changed

+2
-2
lines changed
  • extensions/ql-vscode/gulpfile.ts

1 file changed

+2
-2
lines changed

extensions/ql-vscode/gulpfile.ts/view.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function compileViewEsbuild() {
2828
}
2929

3030
export function watchViewEsbuild() {
31-
watch(["src/view/**/*.{ts,tsx}"], compileViewEsbuild);
31+
watch(["src/**/*.{ts,tsx}"], compileViewEsbuild);
3232
}
3333

3434
export function checkViewTypeScript() {
@@ -38,5 +38,5 @@ export function checkViewTypeScript() {
3838
}
3939

4040
export function watchViewCheckTypeScript() {
41-
watch(["src/view/**/*.{ts,tsx}"], checkViewTypeScript);
41+
watch(["src/**/*.{ts,tsx}"], checkViewTypeScript);
4242
}

0 commit comments

Comments
 (0)