From e4726d32ea3045caf0d25367ffb1869e26c42862 Mon Sep 17 00:00:00 2001 From: Alina Date: Tue, 17 Feb 2026 22:29:27 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20build=20=D1=81=D0=BA=D1=80=D0=B8=D0=BF=D1=82=20?= =?UTF-8?q?=D0=B2=20=D0=BA=D0=BE=D1=80=D0=BD=D0=B5=D0=B2=D0=BE=D0=B9=20pac?= =?UTF-8?q?kage.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Делегирует npm run build в frontend workspace для CI/CD. Co-Authored-By: Claude Opus 4.6 --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index cb75f20..8e0a2f7 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,8 @@ { "name": "test-x6", "private": true, - "workspaces": ["frontend"] + "workspaces": ["frontend"], + "scripts": { + "build": "npm run -w frontend build" + } }