From 8054c125d90a86dbfd45538f02334061dbfe3059 Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Tue, 12 May 2026 22:34:38 +0200 Subject: [PATCH] feat(auth): re-export authManifest + AuthManifest from package root --- packages/auth/src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/auth/src/index.ts b/packages/auth/src/index.ts index c067ff8..d400d0d 100644 --- a/packages/auth/src/index.ts +++ b/packages/auth/src/index.ts @@ -43,3 +43,8 @@ export { type UserSignedUpEvent, } from "./events/user-signed-up.event"; // + +// Feature conformance manifest (added in conformance milestone i, exposed +// here in milestone ii so the boot-time assertion and future tooling can +// read the contract from the package boundary). +export { authManifest, type AuthManifest } from "./feature.manifest";