From 319e2d4539f183dc0914cc1903a09df211d8d73f Mon Sep 17 00:00:00 2001 From: Allison Karlitskaya Date: Wed, 10 Jul 2024 02:23:44 -0400 Subject: [PATCH] package.json: add missing dependencies We make direct use of both 'glob' and 'lodash' from our build system, but we don't declare a dependency on them. We haven't noticed this problem because we've been getting them "for free" from other packages that depend on them. Make the dependency explicit. With this change, it's now possible to run deno run --allow-all build.js Changed by Martin Pitt: Also explicitly pin down the stylelint-config-recommended-scss version. Newer versions don't work together with our current stylelint version. --- node_modules | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/node_modules b/node_modules index cf875b96ce75..801fd77e6217 160000 --- a/node_modules +++ b/node_modules @@ -1 +1 @@ -Subproject commit cf875b96ce7580069562b22191e23b4b225878af +Subproject commit 801fd77e6217ad1fa7f3a2606378ebce0ef4fb0e diff --git a/package.json b/package.json index 07124a0280a5..d1c8d7842c63 100644 --- a/package.json +++ b/package.json @@ -46,13 +46,16 @@ "eslint-plugin-react": "7.34.3", "eslint-plugin-react-hooks": "4.6.2", "gettext-parser": "8.0.0", + "glob": "7.2.3", "htmlparser": "1.7.7", "jed": "1.1.1", + "lodash": "4.17.21", "qunit": "2.21.0", "qunit-tap": "1.5.1", "sass": "1.77.6", "sizzle": "2.3.10", "stylelint": "16.6.1", + "stylelint-config-recommended-scss": "14.0.0", "stylelint-config-standard": "36.0.0", "stylelint-config-standard-scss": "13.1.0", "stylelint-formatter-pretty": "4.0.0",