Rename the package from djarea to mizan across the entire codebase — Python package, React library, generators, tests, and examples. Fix JSX/hook casing (MizanProvider, useMizan, etc.) that broke when the original PascalCase names were lowercased during the rename. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
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/nextjs': path.resolve(__dirname, 'src/client/nextjs.tsx'),
|
|
'mizan/client': path.resolve(__dirname, 'src/client/index.ts'),
|
|
'mizan/jwt': path.resolve(__dirname, 'src/jwt/index.ts'),
|
|
'mizan/allauth/nextjs': path.resolve(__dirname, 'src/allauth/nextjs.tsx'),
|
|
'mizan/allauth': path.resolve(__dirname, 'src/allauth/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',
|
|
],
|
|
},
|
|
})
|