From f899804db379d95fccd36220572f63fcfe59d0fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Thu, 5 Feb 2026 14:12:04 +0100 Subject: [PATCH] fix: update lockfile for twenty CLI bin path change (#17739) ## Summary The lockfile had a stale reference to `dist/cli/index.cjs` but the twenty CLI bin was changed to `dist/cli.cjs`. This was causing CI to fail with: ``` YN0028: - twenty: dist/cli/index.cjs YN0028: + twenty: dist/cli.cjs YN0028: The lockfile would have been modified by this install, which is explicitly forbidden. ``` This PR updates the lockfile to match the new path. --- yarn.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index bfe29c8b62..431986b7ad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -57032,7 +57032,7 @@ __metadata: wait-on: "npm:^7.2.0" zod: "npm:^4.1.11" bin: - twenty: dist/cli/index.cjs + twenty: dist/cli.cjs languageName: unknown linkType: soft