Add build step to npm start script because it's very short and needed when adding new assets
Some checks are pending
build-docker / Build Image (push) Waiting to run

This commit is contained in:
mrkmntal 2026-04-14 14:41:55 -04:00
commit f6441c87cc

View file

@ -5,7 +5,7 @@
"main": "index.mjs",
"type": "module",
"scripts": {
"start": "node index.mjs",
"start": "npm run build && node index.mjs",
"stop": "pkill -f 'node index.mjs' || echo 'No process found'",
"test": "echo \"Error: no test specified\" && exit 1",
"build:travelcities": "node datagenerators/travelcities.mjs",