From 12d0f67f9ff5e3ac7dda4d87f3ab4298e87607b3 Mon Sep 17 00:00:00 2001 From: YasunoriMATSUOKA Date: Tue, 9 Jun 2026 00:44:59 +0900 Subject: [PATCH] chore(deps): ignore @types/node major in root Dependabot too The root npm config was missing the @types/node major ignore that the functions config already has, so Dependabot re-proposed @types/node 25. Keep @types/node from running ahead of the CI/build Node runtime. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b4e9b68..d050ccf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -33,6 +33,9 @@ updates: update-types: ["version-update:semver-major"] - dependency-name: "tailwindcss" update-types: ["version-update:semver-major"] + # Keep @types/node from getting ahead of the CI/build Node runtime. + - dependency-name: "@types/node" + update-types: ["version-update:semver-major"] # Cloud Functions npm dependencies - package-ecosystem: "npm"