Skip to content

Commit 197ed56

Browse files
fix(build): rename Coverage folder to prevent macOS case collisions
Avoids macOS gitignore matching Coverage/ so chart helpers are committed and CI can resolve them.
1 parent 1a61bf4 commit 197ed56

26 files changed

Lines changed: 14 additions & 11 deletions

src/LightwellApp.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import Beacon from 'Pages/Lightwell/Beacon/Beacon';
1616
import LightwellNotFound from 'Pages/Lightwell/components/LightwellNotFound';
1717
import { LightwellDemoLayout } from 'Pages/Lightwell/LightwellDemoContext';
1818
import { useAppContext } from './middleware/AppContext';
19-
import CoverageReport from 'Pages/Lightwell/Coverage/CoverageReport';
20-
import ManifestUpload from 'Pages/Lightwell/Coverage/ManifestUpload';
19+
import CoverageReport from 'Pages/Lightwell/Lens/CoverageReport';
20+
import ManifestUpload from 'Pages/Lightwell/Lens/ManifestUpload';
2121

2222
export default function LightwellApp() {
2323
const pageSafe = usePageSafe();
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/Pages/Lightwell/Coverage/charts/EcosystemBarChart.test.tsx renamed to src/Pages/Lightwell/Lens/charts/EcosystemBarChart.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React, { createRef } from 'react';
22
import { render, screen, within } from '@testing-library/react';
33

4-
import EcosystemBarChart from './EcosystemBarChart';
5-
import { getEcosystemBarChartHeight } from './ecosystemBarChart';
4+
import { getEcosystemBarChartHeight } from './ecosystemBarModel';
65
import { MOCK_REPORT } from '../../mockCoverageAnalysis';
6+
import EcosystemBarChart from './EcosystemBarChart';
77

88
jest.mock('@patternfly/react-charts/victory', () => ({
99
Chart: ({ children }: { children?: React.ReactNode }) => <div>{children}</div>,

src/Pages/Lightwell/Coverage/charts/EcosystemBarChart.tsx renamed to src/Pages/Lightwell/Lens/charts/EcosystemBarChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
type EcosystemChartA11yTable,
2222
type EcosystemChartLegendItem,
2323
getEcosystemChartA11yTable,
24-
} from './ecosystemBarChart';
24+
} from './ecosystemBarModel';
2525
import type { CompletedCoverageReport } from 'services/Lightwell/CoverageReportsApi';
2626

2727
type EcosystemBarChartBase = {

src/Pages/Lightwell/Coverage/charts/MatchDonutChart.tsx renamed to src/Pages/Lightwell/Lens/charts/MatchDonutChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
getDonutData,
99
getDonutLabel,
1010
getMatchedPackagePercentage,
11-
} from './matchDonutChart';
11+
} from './matchDonutModel';
1212
import type { CompletedCoverageReport } from 'services/Lightwell/CoverageReportsApi';
1313

1414
type MatchDonutChartBase = {
File renamed without changes.

src/Pages/Lightwell/Coverage/charts/ecosystemBarChart.ts renamed to src/Pages/Lightwell/Lens/charts/ecosystemBarModel.ts

File renamed without changes.

0 commit comments

Comments
 (0)