From d5c380bb09c7050d94dff04ab112dafb689c3cd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 24 Jun 2024 15:17:53 +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. PR-URL: https://github.com/nodejs/node/pull/53546 Reviewed-By: James M Snell Reviewed-By: Benjamin Gruenbaum Reviewed-By: Luigi Pinca Reviewed-By: Moshe Atlow Reviewed-By: Yagiz Nizipli --- 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",