allauth/ (44 files) is a django-allauth React UI — a separate concern from the Mizan protocol. Moved to legacy/ pending extraction into a standalone mizan-django-allauth package. Also moved to legacy/: - client/AuthContext.tsx — generic auth state from /me endpoint - client/RouterContext.tsx — framework-agnostic router adapter - client/routing.tsx — UserRoute/StaffRoute/AnonymousRoute guards - client/nextjs.tsx — Next.js router adapter for auth These are auth UI infrastructure, not Mizan protocol. The Mizan core only needs JWT for auth header selection (jwt/ stays — MizanProvider depends on useJWT() to decide between Bearer and session auth). Cleaned up re-exports in client/react.ts and vitest aliases. 33 React tests pass. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
844 B
TypeScript
25 lines
844 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'mizan/channels': path.resolve(__dirname, 'src/channels/index.ts'),
|
|
'mizan/client/react': path.resolve(__dirname, 'src/client/react.ts'),
|
|
'mizan/client': path.resolve(__dirname, 'src/client/index.ts'),
|
|
'mizan/jwt': path.resolve(__dirname, 'src/jwt/index.ts'),
|
|
'mizan': path.resolve(__dirname, 'src/index.ts'),
|
|
},
|
|
},
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: ['./vitest.setup.ts'],
|
|
include: ['src/**/*.test.{ts,tsx}'],
|
|
exclude: [
|
|
// Requires @/api/generated.mizan.schema.json from consuming project
|
|
'src/jwt/__tests__/contract.test.ts',
|
|
],
|
|
},
|
|
})
|