remove distinction between local and prod

This commit is contained in:
Shinuwa 2026-06-29 22:22:55 +02:00
parent 6d2e379a0c
commit 8cba5a55b1
2 changed files with 7 additions and 14 deletions

View file

@ -4,10 +4,8 @@
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --env-file=.env.local index.js",
"start:prod": "node --env-file=.env.production index.js",
"deploy": "node --env-file=.env.local deployCommands.js",
"deploy:prod": "node --env-file=.env.production deployCommands.js"
"start": "node --env-file=.env index.js",
"deploy": "node --env-file=.env deployCommands.js"
},
"engines": {
"node": ">=20.6.0"