-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrades client dependencies #945
Upgrades client dependencies #945
Conversation
Thanks for the PR. Please look into the following suggestions.
|
client/package.json
Outdated
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "@into-cps-association/dtaas-web", | |||
"version": "0.4.1", | |||
"version": "0.4.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please bump it up to 0.5.1
e92af8a
to
168c851
Compare
@atomicgamedeveloper please let me know when this PR is ready for my next review. Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@atomicgamedeveloper Thanks for the updates. Please see the new comments.
client/package.json
Outdated
"rimraf": "6.0.1", | ||
"serve": "14.2.4", | ||
"styled-components": "6.1.13", | ||
"typescript": "5.1.6" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this go any higher even for a lower version of a eslint?
client/package.json
Outdated
"@babel/plugin-proposal-private-property-in-object": "^7.21.11", | ||
"@babel/plugin-syntax-flow": "7.25.7", | ||
"@babel/plugin-transform-react-jsx": "7.25.7", | ||
"@eslint/eslintrc": "3.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are not using eslintrc anymore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think maybe client/eslint.config.mjs uses it on line 10 for migration purposes.
import { FlatCompat } from "@eslint/eslintrc";
client/package.json
Outdated
"@eslint/js": "9.12.0", | ||
"@playwright/test": "1.48.1", | ||
"@testing-library/dom": "10.4.0", | ||
"@testing-library/jest-dom": "6.5.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is 6.6.1 now
middleware: getDefaultMiddleware({ | ||
serializableCheck: false, | ||
}), | ||
middleware: (getDefaultMiddleware) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the advantage of this change?
@@ -66,16 +66,17 @@ export const createDigitalTwinsForAssets = async ( | |||
}); | |||
}; | |||
|
|||
// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this might not be needed?
@@ -71,7 +71,7 @@ export const handleStop = async ( | |||
} catch (error) { | |||
dispatch( | |||
showSnackbar({ | |||
message: `Execution stop failed for ${formatName(digitalTwin.DTName)}`, | |||
message: `Execution stop failed for ${formatName(digitalTwin.DTName)}. ${error}`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there an advantage to adding ${error}
here?
@atomicgamedeveloper
|
@atomicgamedeveloper please rebase to |
Code Climate has analyzed commit 8788139 and detected 0 issues on this pull request. View more on Code Climate. |
8788139
to
7a07bc2
Compare
Upgrading the project's dependencies as specified in issue #893.