From 976164b480ab253393c27ff20e5e72528395b484 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 8 Sep 2025 14:49:10 -0500 Subject: [PATCH] Minimize build and test output --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0ad7d9b..e949615 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "version": "0.0.0", "type": "module", "scripts": { - "dev": "npm i && vite", - "build": "npm i && vite build && cp dist/index.html dist/404.html", - "test": "npm i && tsc --noEmit && eslint && vitest run && vite build", + "dev": "npm i --silent && vite", + "build": "npm i --silent && vite build -l error && cp dist/index.html dist/404.html && echo 'Project built successfully!'", + "test": "npm i --silent && tsc --noEmit && eslint && vitest run && vite build -l error && cp dist/index.html dist/404.html && echo 'All tests passed!'", "deploy": "npm run build && npx -y nostr-deploy-cli deploy --skip-setup" }, "dependencies": {