Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8bf3da5
fix: donut chart fixes
itssharmasandeep Jul 13, 2021
5599c6a
Revert "fix: donut chart fixes"
itssharmasandeep Jul 13, 2021
88d3bd4
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Jul 15, 2021
cd18474
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Jul 19, 2021
2aa1a9b
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Jul 20, 2021
111e41d
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Jul 26, 2021
9b40fc4
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Jul 28, 2021
00b1e07
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Jul 29, 2021
f81b19d
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Jul 30, 2021
423dc6d
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Aug 9, 2021
9466514
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Aug 11, 2021
b2b04ba
Merge branch 'main' of github.com:hypertrace/hypertrace-ui
itssharmasandeep Aug 18, 2021
c8afe63
fix: adding exception for peer deps in npm 7
itssharmasandeep Aug 18, 2021
56b4a19
chore: ng 12 base update
itssharmasandeep Aug 18, 2021
3890e75
chore: upgrading @angular/cdk @angular/flex-layout @angular/material
itssharmasandeep Aug 18, 2021
3144cbc
chore: update peer dependencies
itssharmasandeep Aug 18, 2021
5adfde7
fix: lint errors
itssharmasandeep Aug 18, 2021
e50953e
Merge remote-tracking branch 'origin/main' into ng-12
itssharmasandeep Aug 19, 2021
0733640
fix: review comments
itssharmasandeep Aug 19, 2021
b287d7a
fix: errors
itssharmasandeep Aug 19, 2021
c8afafa
refactor: import and package json
itssharmasandeep Aug 19, 2021
c2c6829
Merge branch 'main' into ng-12
anandtiwary Aug 19, 2021
77c549a
Merge remote-tracking branch 'origin/main' into ng-12
itssharmasandeep Aug 20, 2021
0cd1353
fix: node modules cache
itssharmasandeep Aug 20, 2021
84b7cff
Merge branch 'ng-12' of github.com:hypertrace/hypertrace-ui into ng-12
itssharmasandeep Aug 20, 2021
5fceefe
fix: angular material imports
itssharmasandeep Aug 20, 2021
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
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
@hypertrace:registry=https://hypertrace.jfrog.io/artifactory/api/npm/npm/
legacy-peer-deps=true
13 changes: 9 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -46,7 +45,13 @@
"includePaths": ["./projects/assets-library/assets/styles", "./node_modules"]
},
"scripts": [],
"allowedCommonJsDependencies": ["graphql-tag", "zen-observable"]
"allowedCommonJsDependencies": ["graphql-tag", "zen-observable"],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -61,7 +66,6 @@
"sourceMap": false,
"extractCss": true,
Copy link
Contributor

Choose a reason for hiding this comment

The 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,
Expand All @@ -77,7 +81,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down
Loading