Skip to content
Open
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@
"http-proxy": "^1.18.1",
"http-proxy-middleware": "4.2.0",
"husky": "9.1.7",
"jasmine": "~6.3.0",
"jasmine-core": "~6.3.0",
"jasmine": "~7.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

When upgrading jasmine and jasmine-core to v7, the @types/jasmine dependency (currently at ~6.0.0 on line 81) should also be updated to ~7.0.0 to align type definitions with the new major version and avoid potential TypeScript compilation errors.

"jasmine-core": "~7.0.0",
"jasmine-reporters": "^2.5.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"devDependencies": {
"@types/node": "^20.17.19",
"@types/jasmine": "~6.0.0",
"jasmine": "^6.0.0"
"jasmine": "^7.0.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

When upgrading jasmine to ^7.0.0, the @types/jasmine dependency (currently at ~6.0.0 on line 22) should also be updated to ~7.0.0 to align type definitions with the new major version and avoid potential TypeScript compilation errors.

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@types/node": "^20.17.19",
"@types/jasmine": "~6.0.0",
"jasmine": "~6.3.0",
"jasmine": "~7.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

When upgrading jasmine to ~7.0.0, the @types/jasmine dependency (currently at ~6.0.0 on line 21) should also be updated to ~7.0.0 to align type definitions with the new major version and avoid potential TypeScript compilation errors.

"typescript": "~6.0.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"browser-sync": "^3.0.0",
"express": "^5.1.0",
"istanbul-lib-instrument": "^6.0.3",
"jasmine-core": "~6.3.0",
"jasmine-core": "~7.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

When upgrading jasmine-core to ~7.0.0, the @types/jasmine dependency (currently at ~6.0.0 on line 7) should also be updated to ~7.0.0 to align type definitions with the new major version and avoid potential TypeScript compilation errors.

"jasmine-spec-reporter": "~7.0.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
Expand Down
35 changes: 28 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading