-
Notifications
You must be signed in to change notification settings - Fork 4
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
FRE-3415 angular 16 #48
base: master
Are you sure you want to change the base?
Conversation
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.
Some suggestions with package versions.
But we also need to look into the inputs, enums and guards as they do not seem to be behaving in the way one would expect.
@@ -12,19 +12,19 @@ | |||
}, | |||
"private": true, | |||
"devDependencies": { | |||
"@angular-devkit/build-angular": "^14.2.10", | |||
"@angular-devkit/build-angular": "^16.2.10", | |||
"@angular-eslint/builder": "14.4.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.
Suggestion The Angular-eslint packages should all be upgraded to match the angular version
@@ -34,14 +34,14 @@ | |||
"@typescript-eslint/parser": "5.43.0", | |||
"chai": "^4.3.7", | |||
"mocha": "^10.2.0", | |||
"ng-packagr": "^14.2.2", | |||
"ng-packagr": "^16.2.3", | |||
"nyc": "^15.1.0", | |||
"reflect-metadata": "^0.1.13", | |||
"rxjs": "^6.3.3", |
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.
Suggestion Upgrade to ^7.5.7
"typescript": "4.6.4", | ||
"zone.js": "~0.11.4" | ||
"typescript": "^4.9.3", | ||
"zone.js": "~0.13.3" |
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.
Question are we able to go to ^0.14.02?
@@ -3,7 +3,6 @@ | |||
"compilerOptions": { | |||
"outDir": "../../out-tsc/lib", | |||
"declarationMap": true, | |||
"target": "es2020", |
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.
Question Why are we removing this and not upgrading?
@@ -8,13 +8,14 @@ | |||
"declaration": false, | |||
"moduleResolution": "node", | |||
"experimentalDecorators": true, | |||
"target": "es2020", | |||
"target": "ES2022", | |||
"typeRoots": [ | |||
"node_modules/@types" | |||
], | |||
"lib": [ | |||
"es2017", |
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.
Question Why haven't we upgraded this one to ES2022
?
Issue There is another package.json that also needs it's packages upgraded: |
No description provided.