mirror of
https://github.com/azaion/ui.git
synced 2026-06-21 20:01:10 +00:00
[AZ-485] Add Public API barrels + STC-ARCH-01 (F4 close)
Closes architecture baseline finding F4. Every component now exposes its Public API through `src/<component>/index.ts`; cross-component imports go through the barrel. `scripts/check-arch-imports.mjs` plus `STC-ARCH-01` in the static profile enforce the rule; tests in `tests/architecture_imports.test.ts` cover AC-4/AC-5 + 2 exemption cases. One F3-pending exemption (`classColors`) is documented in 5 places (barrel, consumer, script, doc, test) to avoid a circular import. Phase B cycle 1 batch 1 of 2 (epic AZ-447). Batch 2 is AZ-486 (endpoint builders) — blocked on this commit landing. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+8
-10
@@ -1,14 +1,12 @@
|
||||
import { Routes, Route, Navigate } from 'react-router-dom'
|
||||
import { AuthProvider } from './auth/AuthContext'
|
||||
import { FlightProvider } from './components/FlightContext'
|
||||
import ProtectedRoute from './auth/ProtectedRoute'
|
||||
import LoginPage from './features/login/LoginPage'
|
||||
import FlightsPage from './features/flights/FlightsPage'
|
||||
import AnnotationsPage from './features/annotations/AnnotationsPage'
|
||||
import DatasetPage from './features/dataset/DatasetPage'
|
||||
import AdminPage from './features/admin/AdminPage'
|
||||
import SettingsPage from './features/settings/SettingsPage'
|
||||
import Header from './components/Header'
|
||||
import { AuthProvider, ProtectedRoute } from './auth'
|
||||
import { Header, FlightProvider } from './components'
|
||||
import { LoginPage } from './features/login'
|
||||
import { FlightsPage } from './features/flights'
|
||||
import { AnnotationsPage } from './features/annotations'
|
||||
import { DatasetPage } from './features/dataset'
|
||||
import { AdminPage } from './features/admin'
|
||||
import { SettingsPage } from './features/settings'
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user