From e0e0b1a70ebf2b7c6c384771e3f746e9236c4737 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 15ca114a4e5..25bc4f8b566 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",