scanner: add bun.lock as lock file of package.json

This commit is contained in:
linsui 2025-03-19 20:08:47 +08:00 committed by Hans-Christoph Steiner
parent 0af61d8fe1
commit 5e28cd367f

View file

@ -63,7 +63,7 @@ MAVEN_URL_REGEX = re.compile(
DEPFILE = {
"Cargo.toml": ["Cargo.lock"],
"pubspec.yaml": ["pubspec.lock"],
"package.json": ["package-lock.json", "yarn.lock", "pnpm-lock.yaml"],
"package.json": ["package-lock.json", "yarn.lock", "pnpm-lock.yaml", "bun.lock"],
}
SCANNER_CACHE_VERSION = 1