Enable Discovery debug logging for production troubleshooting

- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
This commit is contained in:
2025-08-11 20:13:26 +02:00
parent 59fd3dd3b1
commit 55a330b223
3683 changed files with 2956207 additions and 16948 deletions

View File

@@ -1,15 +1,31 @@
{
"name": "michaelschiemer-frontend",
"type": "module",
"devDependencies": {
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.0"
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@types/jest": "^29.5.12",
"babel-jest": "^30.0.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"vite": "^6.0.7",
"vite-plugin-pwa": "^0.21.1"
},
"scripts": {
"test": "jest",
"dev": "vite",
"build": "vite build && cp dist/sw.js public/sw.js && rm -rf public/assets && cp -R dist/assets public/ && cp dist/.vite/manifest.json public/.vite/",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"dev": "vite --host",
"build": "vite build",
"build:analyze": "vite build --mode analyze",
"preview": "vite preview",
"deploy": "vite build && rm -rf public/assets && cp -R dist/assets public/ && cp dist/.vite/manifest.json public/.vite/"
"clean": "rm -rf public/assets public/.vite public/sw.js",
"clean:node_modules": "rm -rf node_modules package-lock.json && npm install",
"type-check": "tsc --noEmit",
"lint:js": "eslint resources/js --ext .js,.ts --fix",
"format": "prettier --write resources/",
"build:prod": "NODE_ENV=production vite build",
"serve": "vite preview --host --port 4173"
}
}