From cc0fe5aca7aa65f8becfb3d96b3055ee883924c9 Mon Sep 17 00:00:00 2001 From: Hyko Date: Fri, 24 Apr 2026 15:07:05 -0400 Subject: [PATCH] chore(deps): upgrade postcss to 8.5.10 via package override - add overrides field in package.json to force postcss ^8.5.10 - replace next's bundled postcss 8.4.31 with deduped postcss 8.5.10 in lockfile --- package-lock.json | 58 +++++++++++++++++++++++------------------------ package.json | 3 +++ 2 files changed, 32 insertions(+), 29 deletions(-) diff --git a/package-lock.json b/package-lock.json index 772d64c..b326f71 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3653,35 +3653,6 @@ "tslib": "^2.8.0" } }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "peer": true, - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, "node_modules/node-cron": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/node-cron/-/node-cron-4.2.1.tgz", @@ -3910,6 +3881,35 @@ "node": ">= 6" } }, + "node_modules/postcss": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz", + "integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, "node_modules/postcss-load-config": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", diff --git a/package.json b/package.json index 8371010..b390e10 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,9 @@ "next": ">=14.0.0", "react": "^19.0.0" }, + "overrides": { + "postcss": "^8.5.10" + }, "exports": { ".": { "import": "./dist/index.js"