-
Notifications
You must be signed in to change notification settings - Fork 11
chore: upgrade to angular 12 #1073
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
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
8bf3da5
fix: donut chart fixes
itssharmasandeep 5599c6a
Revert "fix: donut chart fixes"
itssharmasandeep 88d3bd4
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep cd18474
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep 2aa1a9b
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep 111e41d
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep 9b40fc4
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep 00b1e07
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep f81b19d
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep 423dc6d
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep 9466514
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep b2b04ba
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep c8afe63
fix: adding exception for peer deps in npm 7
itssharmasandeep 56b4a19
chore: ng 12 base update
itssharmasandeep 3890e75
chore: upgrading @angular/cdk @angular/flex-layout @angular/material
itssharmasandeep 3144cbc
chore: update peer dependencies
itssharmasandeep 5adfde7
fix: lint errors
itssharmasandeep e50953e
Merge remote-tracking branch 'origin/main' into ng-12
itssharmasandeep 0733640
fix: review comments
itssharmasandeep b287d7a
fix: errors
itssharmasandeep c8afafa
refactor: import and package json
itssharmasandeep c2c6829
Merge branch 'main' into ng-12
anandtiwary 77c549a
Merge remote-tracking branch 'origin/main' into ng-12
itssharmasandeep 0cd1353
fix: node modules cache
itssharmasandeep 84b7cff
Merge branch 'ng-12' of github.com:hypertrace/hypertrace-ui into ng-12
itssharmasandeep 5fceefe
fix: angular material imports
itssharmasandeep File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"aot": true, | ||
"outputPath": "dist/hypertrace-ui", | ||
"index": "src/index.html", | ||
"main": "src/main.ts", | ||
|
@@ -46,7 +45,13 @@ | |
"includePaths": ["./projects/assets-library/assets/styles", "./node_modules"] | ||
}, | ||
"scripts": [], | ||
"allowedCommonJsDependencies": ["graphql-tag", "zen-observable"] | ||
"allowedCommonJsDependencies": ["graphql-tag", "zen-observable"], | ||
itssharmasandeep marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"vendorChunk": true, | ||
"extractLicenses": false, | ||
"buildOptimizer": false, | ||
"sourceMap": true, | ||
"optimization": false, | ||
"namedChunks": true | ||
}, | ||
"configurations": { | ||
"production": { | ||
|
@@ -59,9 +64,7 @@ | |
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"extractCss": true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep. This would fix that warning |
||
"namedChunks": false, | ||
"aot": true, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
|
@@ -77,7 +80,8 @@ | |
} | ||
] | ||
} | ||
} | ||
}, | ||
"defaultConfiguration": "" | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 needs to be updated in the publish job, too.
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 saw that and I think we're doing something different in publish job
restoreKeys
containpackage.json
instead ofpackage-lock.json
in the key value and I think it would always be different right?cache-hit
and every time we're doingnpm ci
so cache part seems unused here.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.
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.
whoops - yeah, that one is different but shouldn't be. It will still work, just off fresh node modules each time - so we can come back to that as tech debt.
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.
should we go ahead and merge this PR?