Skip to content
Merged

up deps #1423

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ nodeLinker: node-modules
logFilters:
- code: YN0013
level: discard
packageExtensions:
ibm_db@*:
dependencies:
packageExtensions:
ibm_db@*:
dependencies:
node-gyp: "^10.0.1"

yarnPath: .yarn/releases/yarn-3.4.1.cjs
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"winston": "3.18.3"
},
"optionalDependencies": {
"ibm_db": "^3.3.0"
"ibm_db": "3.3.0"

Copilot AI Nov 7, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version inconsistency detected: ibm_db is being updated to ^3.3.4 in the root package and rocketadmin-agent, but in backend/package.json it's being pinned to the exact version 3.3.0 (without the caret). This inconsistency could lead to different versions being installed in different parts of the project. Consider using a consistent version specifier across all locations (either ^3.3.4 or a specific version).

Suggested change
"ibm_db": "3.3.0"
"ibm_db": "^3.3.4"

Copilot uses AI. Check for mistakes.
},
"devDependencies": {
"@ava/typescript": "6.0.0",
Expand Down
6 changes: 3 additions & 3 deletions backend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"moduleResolution": "node",
"skipLibCheck": true
},
/*"references": [
{ "path": "../shared-code" },
],*/
// "references": [
// { "path": "../shared-code" },
// ],
"include": ["src", "test"],
"exclude": ["node_modules", "dist", "../node_modules"]
}
11 changes: 7 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,20 @@
"monaco-editor": "0.44.0",
"ng-dynamic-component": "^10.7.0",
"ngx-cookie-service": "^19.0.0",
"ngx-markdown": "^19.0.0",
"ngx-markdown": "^19.1.1",
"ngx-stripe": "^19.0.0",
"pluralize": "^8.0.0",
"postgres-interval": "^4.0.2",
"private-ip": "^3.0.2",
"puppeteer": "^23.10.4",
"puppeteer": "^24.29.1",
"rxjs": "^7.4.0",
"tslib": "^2.8.1",
"uuid": "^11.1.0",
"validator": "^13.12.0",
"validator": "^13.15.20",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.2.4",
"@angular-devkit/build-angular": "~19.2.19",
"@angular/cli": "~19.0.5",
"@angular/compiler-cli": "~19.0.4",
"@angular/language-service": "~19.0.4",
Expand All @@ -81,5 +81,8 @@
"ts-node": "~10.9.2",
"typescript": "~5.6.0"
},
"resolutions": {
"mermaid": "^11.10.0"
},
"packageManager": "yarn@1.22.22"
}
Loading
Loading