From 0affe621d515cbffc417797aec6224705da06d0f Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Wed, 10 Apr 2024 11:46:01 +0800
Subject: [PATCH] ci: update pnpm lockfile after updating package.json from
 edge

---
 packages/edge/scripts/update-deps.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/packages/edge/scripts/update-deps.js b/packages/edge/scripts/update-deps.js
index cb8f6d866..0fc128666 100644
--- a/packages/edge/scripts/update-deps.js
+++ b/packages/edge/scripts/update-deps.js
@@ -1,5 +1,6 @@
 // Copies the dependencies from the core package to the edge package. Run with each build to ensure that they are the same
 
+import { execSync } from "node:child_process";
 import fs from "node:fs";
 import path from "node:path";
 
@@ -9,6 +10,7 @@ const edgePackagePath = path.join(process.cwd(), "package.json");
 const edgePackage = readJson(edgePackagePath);
 edgePackage.dependencies = readJson(corePackagePath).dependencies;
 writeJson(edgePackagePath, edgePackage);
+execSync("pnpm install --lockfile-only", { stdio: "inherit" });
 
 function readJson(filePath) {
   const content = fs.readFileSync(filePath, "utf8");
-- 
GitLab