From b1d850d3361edfd63226f9ab24563f73d2dd98bc Mon Sep 17 00:00:00 2001 From: Kaktus Klaus Date: Thu, 5 Mar 2026 08:22:22 +0000 Subject: [PATCH] =?UTF-8?q?fix(NE-6938):=20align=20npm=20scripts=20?= =?UTF-8?q?=E2=80=94=20add=20build:dev;=20standardize=20start=20alias?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add `build:dev` script: `vite build` (no-compression build) - Change `start` to alias `npm run dev` (was already correct) - Keep `dev`, `build`, `preview`, `check` unchanged Co-Authored-By: Claude Sonnet 4.6 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 110a04c..5da16fc 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,10 @@ "type": "module", "version": "1.0.0", "scripts": { - "start": "npm run dev", "dev": "vite dev --host", + "start": "npm run dev", "build": "vite build", + "build:dev": "vite build", "preview": "vite preview", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"