add build serve and start on other things
All checks were successful
Code quality checks / biome (push) Successful in 7s

This commit is contained in:
creations 2025-05-22 18:44:56 -04:00
parent d1b1d0aeb5
commit 2552d305da
Signed by: creations
GPG key ID: 8F553AA4320FC711
22 changed files with 281 additions and 74 deletions

View file

@ -5,10 +5,9 @@
"private": true,
"type": "module",
"scripts": {
"start": "bun src/index.ts",
"start": "bun run build && bun src/serve.ts",
"dev": "bun src/index.ts --dev",
"build": "vite build",
"serve": "vite preview",
"build": "bun run src/build.ts",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --fix",
"cleanup": "rm -rf logs node_modules bun.lock"
@ -23,6 +22,7 @@
},
"dependencies": {
"@creations.works/logger": "^1.0.3",
"@solidjs/router": "^0.15.3",
"solid-js": "^1.9.5"
}
}