From 353299ee36626c62c4dec7366312c26e4c4054ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sat, 22 Jun 2024 15:04:24 +0200 Subject: [PATCH] tools: lock versions of irrelevant DB deps `caniuse-lite` and `electron-to-chromium` are "database dependencies" that we don't care about and are often updated, increasing the size of the repository each time. Lock their versions to the currently installed one so it doesn't happen in the future. --- tools/eslint/package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/eslint/package.json b/tools/eslint/package.json index 15ca114a4e5580..25bc4f8b56652f 100644 --- a/tools/eslint/package.json +++ b/tools/eslint/package.json @@ -2,6 +2,10 @@ "name": "eslint-tools", "version": "0.0.0", "private": true, + "overrides": { + "caniuse-lite": "1.0.30001636", + "electron-to-chromium": "1.4.806" + }, "dependencies": { "@babel/core": "^7.24.7", "@babel/eslint-parser": "^7.24.7",