From ef045594dc9f00022b4704cc273c5fbac692025e Mon Sep 17 00:00:00 2001 From: Muawiya Amir Date: Mon, 7 Sep 2026 19:32:04 +0500 Subject: [PATCH] fix(site): match the lockfile name to package.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `site/package.json` is `diskern-site`; the lockfile still said `site` in both the root object and `packages[""]`, so npm rewrote those two lines on every install and left a modified file in the working tree. `npm ci` tolerates the mismatch, so CI stayed green and nothing ever surfaced it — it just sat there as a stray hunk waiting to be swept into an unrelated PR. --- site/package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/package-lock.json b/site/package-lock.json index b61d73a..c03f600 100644 --- a/site/package-lock.json +++ b/site/package-lock.json @@ -1,11 +1,11 @@ { - "name": "site", + "name": "diskern-site", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "site", + "name": "diskern-site", "version": "0.0.0", "dependencies": { "react": "^19.2.8",