stable

Clone or download

Read-only

Replace relative imports of pie chart with a package import

part of request #26381 Prevent relative imports outside of a package No functional change expected in pie charts display: - in site admin homepage - in project statistics disk usage - in project milestones TTM campaign - in jenkins test results widget Change-Id: I453dcfb0ddd748c33c4a4acc612aed898c967119

Modified Files

Name
A lib/frontend/pie-chart/.gitignore +1 −0 Go to diff View file
A lib/frontend/pie-chart/README.md +24 −0 Go to diff View file
A lib/frontend/pie-chart/package.json +28 −0 Go to diff View file
A lib/frontend/pie-chart/pnpm-lock.yaml +75 −0 Go to diff View file
A lib/frontend/pie-chart/src/main.ts +21 −0 Go to diff View file
R src/scripts/charts-builders/statistics-pie-chart.d.ts Go to diff View file
R src/scripts/charts-builders/statistics-pie-chart.js Go to diff View file
A lib/frontend/pie-chart/tsconfig.json +7 −0 Go to diff View file
A lib/frontend/pie-chart/vite.config.ts +43 −0 Go to diff View file
M plugins/hudson/package.json +1 −3 Go to diff View file
M plugins/hudson/pnpm-lock.yaml +2 −66 Go to diff View file
M plugins/hudson/scripts/test-results-pie-chart.js +1 −1 Go to diff View file
M plugins/projectmilestones/package.json +1 −0 Go to diff View file
M plugins/projectmilestones/pnpm-lock.yaml +2 −0 Go to diff View file
M plugins/projectmilestones/scripts/projectmilestones/src/chart_builder/pie_chart_drawer/pie-chart-drawer.test.ts +4 −7 Go to diff View file
M plugins/projectmilestones/scripts/projectmilestones/src/chart_builder/pie_chart_drawer/pie-chart-drawer.ts +3 −6 Go to diff View file
M plugins/projectmilestones/scripts/projectmilestones/src/components/WhatsHotSection/ReleaseDescription/TestManagement/TestManagement.vue +1 −1 Go to diff View file
M plugins/statistics/package.json +1 −3 Go to diff View file
M plugins/statistics/pnpm-lock.yaml +2 −66 Go to diff View file
M plugins/statistics/scripts/disk-usage-pie/src/disk-usage-pie-chart.js +1 −1 Go to diff View file
M plugins/statistics/webpack.common.js +0 −8 Go to diff View file
M src/package.json +1 −1 Go to diff View file
M src/pnpm-lock.yaml +28 −51 Go to diff View file
M src/scripts/charts-builders/type.d.ts +0 −12 Go to diff View file
M src/scripts/site-admin/generate-pie-charts.ts +3 −3 Go to diff View file