Merge branch 'bun' into 'master'

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

See merge request fdroid/fdroidserver!1615
This commit is contained in:
Hans-Christoph Steiner 2025-03-20 07:30:02 +00:00
commit 8e39f82eb9

View file

@ -63,7 +63,7 @@ MAVEN_URL_REGEX = re.compile(
DEPFILE = { DEPFILE = {
"Cargo.toml": ["Cargo.lock"], "Cargo.toml": ["Cargo.lock"],
"pubspec.yaml": ["pubspec.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 SCANNER_CACHE_VERSION = 1