From 3102fc9a66d0aea596919f06cc4d90be910491f5 Mon Sep 17 00:00:00 2001 From: ethernet Date: Fri, 10 Jul 2026 20:07:34 -0400 Subject: [PATCH] fix(shared): add missing 'fix' script alias apps/shared had lint:fix but not the 'fix' alias that other workspaces have. The js-tests check job runs 'npm run fix' as a second step, so this workspace was failing with 'Missing script: fix'. --- apps/shared/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/shared/package.json b/apps/shared/package.json index 83e2a31e3ffa..3d3c921e14dc 100644 --- a/apps/shared/package.json +++ b/apps/shared/package.json @@ -10,6 +10,7 @@ "scripts": { "lint": "eslint src/", "lint:fix": "eslint src/ --fix", + "fix": "npm run lint:fix", "typecheck": "tsc -p . --noEmit", "check": "npm run typecheck" },