centralize the theming

This commit is contained in:
fred 2025-08-20 10:06:23 -07:00
parent 30b28056de
commit db8b20ee71
20 changed files with 183 additions and 114 deletions

View file

@ -4,7 +4,7 @@ WORKDIR /usr/src/app
COPY package*.json ./
RUN if [ "$NODE_ENV" = "dev" ]; then npm install; else npm install --only=production; fi
RUN if [ "$NODE_ENV" = "dev" ]; then npm install; else npm install --omit=dev; fi
COPY . .

View file

@ -3,7 +3,7 @@
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/index.js",
"dev": "nodemon ./src/index.ts",
"production": "tsc && node ./dist/index.js",
"demo": "tsc && node ./dist/index.js"
},