fix: update error logging to include error details in data migration classes

refactor: change GenericObject type from Object to object for consistency
fix: increase memory limit for eslint commands in package.json
This commit is contained in:
Simon Larsen
2025-06-10 15:17:55 +01:00
parent 656420ac7b
commit dd05f540c1
6 changed files with 9 additions and 6 deletions

View File

@@ -37,8 +37,8 @@
"prerun": "bash configure.sh",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"uninstall": "bash uninstall.sh",
"lint": "export NODE_OPTIONS='--max-old-space-size=8096' && npx eslint .",
"fix-lint": "export NODE_OPTIONS='--max-old-space-size=8096' && npx eslint . --fix",
"lint": "export NODE_OPTIONS='--max-old-space-size=16384' && npx eslint .",
"fix-lint": "export NODE_OPTIONS='--max-old-space-size=16384' && npx eslint . --fix",
"fix": "npm run fix-lint",
"status-check": "bash ./Tests/Scripts/status-check.sh $npm_config_services",
"start": "export $(grep -v '^#' config.env | xargs) && docker compose up --remove-orphans -d $npm_config_services && npm run status-check",