From 03b33106e0012e31ed750ff7e57c70fb31cc0bdf Mon Sep 17 00:00:00 2001 From: DhanushSantosh Date: Wed, 7 Jan 2026 00:32:56 +0530 Subject: [PATCH] fix: replace git+ssh URLs with https in package-lock.json - Configure git to use HTTPS for GitHub URLs globally - Run npm run fix:lockfile to rewrite package-lock.json - Resolves lint-lockfile failure in CI/CD environments --- package-lock.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 376cf074..6481a7fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1468,7 +1468,7 @@ }, "node_modules/@electron/node-gyp": { "version": "10.2.0-electron.1", - "resolved": "git+ssh://git@github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2", + "resolved": "git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2", "integrity": "sha512-4MSBTT8y07YUDqf69/vSh80Hh791epYqGtWHO3zSKhYFwQg+gx9wi1PqbqP6YqC4WMsNxZ5l9oDmnWdK5pfCKQ==", "dev": true, "license": "MIT",