From 0bad4e938e02bf564023089fda7dbb8921f9ec58 Mon Sep 17 00:00:00 2001 From: Mario34 Date: Mon, 24 Nov 2025 09:24:20 +0800 Subject: [PATCH] Include missing `cached-iterable` dev dependency in `package.json` This dependency got introduced during the move to Fluent for localization (bug 1858715), but it wasn't added to `package.json` at the time. This worked because other dependencies already installed it, but we shouldn't rely on that, so this commit explicitly includes it in `package.json` instead. Fixes 66982a2a. --- package-lock.json | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 4ce9f0353..f7f4fc891 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,6 +19,7 @@ "@types/node": "^24.10.0", "autoprefixer": "^10.4.21", "babel-loader": "^10.0.0", + "cached-iterable": "^0.3.0", "caniuse-lite": "^1.0.30001754", "core-js": "^3.46.0", "eslint": "^9.39.1", @@ -4100,7 +4101,6 @@ "resolved": "https://registry.npmjs.org/cached-iterable/-/cached-iterable-0.3.0.tgz", "integrity": "sha512-MDqM6TpBVebZD4UDtmlFp8EjVtRcsB6xt9aRdWymjk0fWVUUGgmt/V7o0H0gkI2Tkvv8B0ucjidZm4mLosdlWw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=8.9.0" } diff --git a/package.json b/package.json index 8a48fa3a0..ad67e6cbe 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "@types/node": "^24.10.0", "autoprefixer": "^10.4.21", "babel-loader": "^10.0.0", + "cached-iterable": "^0.3.0", "caniuse-lite": "^1.0.30001754", "core-js": "^3.46.0", "eslint": "^9.39.1",