Minimize build and test output

This commit is contained in:
Alex Gleason 2025-09-08 14:49:10 -05:00
parent 36756f56a9
commit 976164b480
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -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": {