Skip to content

Commit dd1b054

Browse files
authored
Merge branch 'main' into github-action/bump-cli
2 parents b31a769 + b96cd6c commit dd1b054

File tree

2 files changed

+3
-98
lines changed

2 files changed

+3
-98
lines changed

extensions/ql-vscode/src/extension.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -717,12 +717,13 @@ async function installOrUpdateThenTryActivate(
717717
return undefined;
718718
}
719719

720-
const PACK_GLOBS = [
720+
const CLEAR_PACK_CACHE_ON_EDIT_GLOBS = [
721721
"**/codeql-pack.yml",
722722
"**/qlpack.yml",
723723
"**/queries.xml",
724724
"**/codeql-pack.lock.yml",
725725
"**/qlpack.lock.yml",
726+
"**/*.dbscheme",
726727
".codeqlmanifest.json",
727728
"codeql-workspace.yml",
728729
];
@@ -769,7 +770,7 @@ async function activateWithInstalledDistribution(
769770
ctx,
770771
);
771772

772-
for (const glob of PACK_GLOBS) {
773+
for (const glob of CLEAR_PACK_CACHE_ON_EDIT_GLOBS) {
773774
const fsWatcher = workspace.createFileSystemWatcher(glob);
774775
ctx.subscriptions.push(fsWatcher);
775776

extensions/ql-vscode/test/unit-tests/common/short-paths.test.ts

-96
This file was deleted.

0 commit comments

Comments
 (0)