@idevconn/create-icore 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +56 -0
- package/dist/cli.js +300 -0
- package/dist/index.cjs +303 -0
- package/dist/index.d.cts +26 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.js +265 -0
- package/package.json +72 -0
- package/templates/.husky/pre-commit +56 -0
- package/templates/.nvmrc +1 -0
- package/templates/.prettierignore +7 -0
- package/templates/.prettierrc +7 -0
- package/templates/.yarnrc.yml +7 -0
- package/templates/apps/api/.env.example +19 -0
- package/templates/apps/api/eslint.config.mjs +23 -0
- package/templates/apps/api/package.json +20 -0
- package/templates/apps/api/project.json +76 -0
- package/templates/apps/api/src/app/abilities/__tests__/ability.guard.unit.test.ts +49 -0
- package/templates/apps/api/src/app/abilities/abilities.module.ts +10 -0
- package/templates/apps/api/src/app/abilities/ability.factory.ts +13 -0
- package/templates/apps/api/src/app/abilities/ability.guard.ts +29 -0
- package/templates/apps/api/src/app/abilities/check-ability.decorator.ts +12 -0
- package/templates/apps/api/src/app/app.module.ts +19 -0
- package/templates/apps/api/src/app/auth/__tests__/auth.guard.unit.test.ts +66 -0
- package/templates/apps/api/src/app/auth/auth.controller.ts +62 -0
- package/templates/apps/api/src/app/auth/auth.guard.ts +42 -0
- package/templates/apps/api/src/app/auth/auth.module.ts +17 -0
- package/templates/apps/api/src/app/auth/public.decorator.ts +4 -0
- package/templates/apps/api/src/app/profile/profile.controller.ts +15 -0
- package/templates/apps/api/src/app/profile/profile.module.ts +5 -0
- package/templates/apps/api/src/app/storage/__tests__/assert-ownership.unit.test.ts +28 -0
- package/templates/apps/api/src/app/storage/assert-ownership.ts +8 -0
- package/templates/apps/api/src/app/storage/storage.controller.ts +108 -0
- package/templates/apps/api/src/app/storage/storage.module.ts +10 -0
- package/templates/apps/api/src/assets/.gitkeep +0 -0
- package/templates/apps/api/src/main.ts +43 -0
- package/templates/apps/api/tsconfig.app.json +13 -0
- package/templates/apps/api/tsconfig.json +16 -0
- package/templates/apps/api/tsconfig.spec.json +16 -0
- package/templates/apps/api/vitest.config.mts +21 -0
- package/templates/apps/api/webpack.config.js +25 -0
- package/templates/apps/microservices/auth/.env.example +38 -0
- package/templates/apps/microservices/auth/package.json +19 -0
- package/templates/apps/microservices/auth/project.json +65 -0
- package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.firebase.integration.unit.test.ts +53 -0
- package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.supabase.integration.unit.test.ts +47 -0
- package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.unit.test.ts +87 -0
- package/templates/apps/microservices/auth/src/app/app.module.ts +66 -0
- package/templates/apps/microservices/auth/src/app/auth.controller.ts +60 -0
- package/templates/apps/microservices/auth/src/assets/.gitkeep +0 -0
- package/templates/apps/microservices/auth/src/main.ts +28 -0
- package/templates/apps/microservices/auth/tsconfig.app.json +13 -0
- package/templates/apps/microservices/auth/tsconfig.json +16 -0
- package/templates/apps/microservices/auth/tsconfig.spec.json +16 -0
- package/templates/apps/microservices/auth/vitest.config.mts +21 -0
- package/templates/apps/microservices/auth/webpack.config.js +25 -0
- package/templates/apps/microservices/upload/.env.example +30 -0
- package/templates/apps/microservices/upload/package.json +21 -0
- package/templates/apps/microservices/upload/project.json +65 -0
- package/templates/apps/microservices/upload/src/app/__tests__/storage.controller.unit.test.ts +49 -0
- package/templates/apps/microservices/upload/src/app/app.module.ts +117 -0
- package/templates/apps/microservices/upload/src/app/storage.controller.ts +51 -0
- package/templates/apps/microservices/upload/src/assets/.gitkeep +0 -0
- package/templates/apps/microservices/upload/src/main.ts +28 -0
- package/templates/apps/microservices/upload/tsconfig.app.json +13 -0
- package/templates/apps/microservices/upload/tsconfig.json +16 -0
- package/templates/apps/microservices/upload/tsconfig.spec.json +16 -0
- package/templates/apps/microservices/upload/vitest.config.mts +22 -0
- package/templates/apps/microservices/upload/webpack.config.js +25 -0
- package/templates/apps/templates/client-shadcn/.env.example +2 -0
- package/templates/apps/templates/client-shadcn/eslint.config.mjs +10 -0
- package/templates/apps/templates/client-shadcn/index.html +17 -0
- package/templates/apps/templates/client-shadcn/project.json +9 -0
- package/templates/apps/templates/client-shadcn/public/favicon.ico +0 -0
- package/templates/apps/templates/client-shadcn/src/app/app.module.css +1 -0
- package/templates/apps/templates/client-shadcn/src/app/app.spec.tsx +9 -0
- package/templates/apps/templates/client-shadcn/src/app/app.tsx +7 -0
- package/templates/apps/templates/client-shadcn/src/assets/.gitkeep +0 -0
- package/templates/apps/templates/client-shadcn/src/components/AccessDeniedPage.tsx +15 -0
- package/templates/apps/templates/client-shadcn/src/components/PageLayout.tsx +55 -0
- package/templates/apps/templates/client-shadcn/src/components/layout/LayoutFooter.tsx +8 -0
- package/templates/apps/templates/client-shadcn/src/components/layout/LayoutHeader.tsx +57 -0
- package/templates/apps/templates/client-shadcn/src/components/layout/LayoutSider.tsx +44 -0
- package/templates/apps/templates/client-shadcn/src/components/ui/button.tsx +50 -0
- package/templates/apps/templates/client-shadcn/src/components/ui/card.tsx +63 -0
- package/templates/apps/templates/client-shadcn/src/components/ui/input.tsx +23 -0
- package/templates/apps/templates/client-shadcn/src/components/ui/label.tsx +18 -0
- package/templates/apps/templates/client-shadcn/src/globals.css +27 -0
- package/templates/apps/templates/client-shadcn/src/layouts/MainLayout.tsx +17 -0
- package/templates/apps/templates/client-shadcn/src/lib/notify.ts +15 -0
- package/templates/apps/templates/client-shadcn/src/lib/utils.ts +6 -0
- package/templates/apps/templates/client-shadcn/src/main.tsx +50 -0
- package/templates/apps/templates/client-shadcn/src/routeTree.gen.ts +136 -0
- package/templates/apps/templates/client-shadcn/src/routes/__root.tsx +5 -0
- package/templates/apps/templates/client-shadcn/src/routes/_dashboard/dashboard.tsx +33 -0
- package/templates/apps/templates/client-shadcn/src/routes/_dashboard/profile.tsx +88 -0
- package/templates/apps/templates/client-shadcn/src/routes/_dashboard.tsx +16 -0
- package/templates/apps/templates/client-shadcn/src/routes/index.tsx +33 -0
- package/templates/apps/templates/client-shadcn/src/routes/login.tsx +93 -0
- package/templates/apps/templates/client-shadcn/src/styles.css +1 -0
- package/templates/apps/templates/client-shadcn/tsconfig.app.json +27 -0
- package/templates/apps/templates/client-shadcn/tsconfig.json +21 -0
- package/templates/apps/templates/client-shadcn/tsconfig.spec.json +30 -0
- package/templates/apps/templates/client-shadcn/vite.config.mts +92 -0
- package/templates/apps/templates/client-shadcn-e2e/eslint.config.mjs +12 -0
- package/templates/apps/templates/client-shadcn-e2e/playwright.config.ts +69 -0
- package/templates/apps/templates/client-shadcn-e2e/project.json +10 -0
- package/templates/apps/templates/client-shadcn-e2e/src/icore.spec.ts +27 -0
- package/templates/apps/templates/client-shadcn-e2e/tsconfig.json +19 -0
- package/templates/eslint.config.mjs +20 -0
- package/templates/libs/auth-client/README.md +11 -0
- package/templates/libs/auth-client/eslint.config.mjs +22 -0
- package/templates/libs/auth-client/package.json +15 -0
- package/templates/libs/auth-client/project.json +19 -0
- package/templates/libs/auth-client/src/index.ts +2 -0
- package/templates/libs/auth-client/src/lib/auth-client.module.ts +25 -0
- package/templates/libs/auth-client/src/lib/auth-client.service.ts +30 -0
- package/templates/libs/auth-client/tsconfig.json +24 -0
- package/templates/libs/auth-client/tsconfig.lib.json +26 -0
- package/templates/libs/auth-client/tsconfig.spec.json +22 -0
- package/templates/libs/auth-client/vitest.config.mts +22 -0
- package/templates/libs/auth-strategies/firebase/README.md +11 -0
- package/templates/libs/auth-strategies/firebase/eslint.config.mjs +22 -0
- package/templates/libs/auth-strategies/firebase/package.json +15 -0
- package/templates/libs/auth-strategies/firebase/project.json +19 -0
- package/templates/libs/auth-strategies/firebase/src/index.ts +4 -0
- package/templates/libs/auth-strategies/firebase/src/lib/__tests__/firebase-auth.contract.unit.test.ts +13 -0
- package/templates/libs/auth-strategies/firebase/src/lib/firebase-auth.strategy.ts +77 -0
- package/templates/libs/auth-strategies/firebase/src/lib/identity-toolkit.client.ts +72 -0
- package/templates/libs/auth-strategies/firebase/src/lib/testing/mock-admin-auth.ts +41 -0
- package/templates/libs/auth-strategies/firebase/src/lib/testing/mock-identity-toolkit.ts +76 -0
- package/templates/libs/auth-strategies/firebase/tsconfig.json +24 -0
- package/templates/libs/auth-strategies/firebase/tsconfig.lib.json +23 -0
- package/templates/libs/auth-strategies/firebase/tsconfig.spec.json +22 -0
- package/templates/libs/auth-strategies/firebase/vitest.config.mts +22 -0
- package/templates/libs/auth-strategies/supabase/README.md +11 -0
- package/templates/libs/auth-strategies/supabase/eslint.config.mjs +22 -0
- package/templates/libs/auth-strategies/supabase/package.json +16 -0
- package/templates/libs/auth-strategies/supabase/project.json +19 -0
- package/templates/libs/auth-strategies/supabase/src/index.ts +2 -0
- package/templates/libs/auth-strategies/supabase/src/lib/__tests__/supabase-auth.contract.unit.test.ts +8 -0
- package/templates/libs/auth-strategies/supabase/src/lib/supabase-auth.strategy.ts +79 -0
- package/templates/libs/auth-strategies/supabase/src/lib/testing/mock-supabase.ts +107 -0
- package/templates/libs/auth-strategies/supabase/tsconfig.json +24 -0
- package/templates/libs/auth-strategies/supabase/tsconfig.lib.json +23 -0
- package/templates/libs/auth-strategies/supabase/tsconfig.spec.json +22 -0
- package/templates/libs/auth-strategies/supabase/vitest.config.mts +22 -0
- package/templates/libs/shared/README.md +11 -0
- package/templates/libs/shared/eslint.config.mjs +24 -0
- package/templates/libs/shared/package.json +14 -0
- package/templates/libs/shared/project.json +19 -0
- package/templates/libs/shared/src/__tests__/transport.unit.test.ts +58 -0
- package/templates/libs/shared/src/abilities/__tests__/ability.unit.test.ts +28 -0
- package/templates/libs/shared/src/abilities/ability.ts +21 -0
- package/templates/libs/shared/src/abilities/index.ts +2 -0
- package/templates/libs/shared/src/abilities/subjects.ts +2 -0
- package/templates/libs/shared/src/index.ts +3 -0
- package/templates/libs/shared/src/strategies/__tests__/fake-auth.contract.unit.test.ts +4 -0
- package/templates/libs/shared/src/strategies/__tests__/fake-storage.contract.unit.test.ts +4 -0
- package/templates/libs/shared/src/strategies/auth.ts +21 -0
- package/templates/libs/shared/src/strategies/contract/auth-contract.ts +66 -0
- package/templates/libs/shared/src/strategies/contract/storage-contract.ts +58 -0
- package/templates/libs/shared/src/strategies/fakes/fake-auth.ts +73 -0
- package/templates/libs/shared/src/strategies/fakes/fake-storage.ts +51 -0
- package/templates/libs/shared/src/strategies/fakes/index.ts +2 -0
- package/templates/libs/shared/src/strategies/index.ts +5 -0
- package/templates/libs/shared/src/strategies/storage.ts +17 -0
- package/templates/libs/shared/src/transport.ts +55 -0
- package/templates/libs/shared/tsconfig.json +24 -0
- package/templates/libs/shared/tsconfig.lib.json +23 -0
- package/templates/libs/shared/tsconfig.spec.json +22 -0
- package/templates/libs/shared/vitest.config.mts +21 -0
- package/templates/libs/storage-strategies/cloudinary/README.md +11 -0
- package/templates/libs/storage-strategies/cloudinary/eslint.config.mjs +23 -0
- package/templates/libs/storage-strategies/cloudinary/package.json +15 -0
- package/templates/libs/storage-strategies/cloudinary/project.json +19 -0
- package/templates/libs/storage-strategies/cloudinary/src/index.ts +2 -0
- package/templates/libs/storage-strategies/cloudinary/src/lib/__tests__/cloudinary-storage.contract.unit.test.ts +8 -0
- package/templates/libs/storage-strategies/cloudinary/src/lib/cloudinary-storage.strategy.ts +75 -0
- package/templates/libs/storage-strategies/cloudinary/src/lib/testing/mock-cloudinary.ts +36 -0
- package/templates/libs/storage-strategies/cloudinary/tsconfig.json +24 -0
- package/templates/libs/storage-strategies/cloudinary/tsconfig.lib.json +23 -0
- package/templates/libs/storage-strategies/cloudinary/tsconfig.spec.json +22 -0
- package/templates/libs/storage-strategies/cloudinary/vitest.config.mts +22 -0
- package/templates/libs/storage-strategies/firebase/README.md +11 -0
- package/templates/libs/storage-strategies/firebase/eslint.config.mjs +23 -0
- package/templates/libs/storage-strategies/firebase/package.json +15 -0
- package/templates/libs/storage-strategies/firebase/project.json +19 -0
- package/templates/libs/storage-strategies/firebase/src/index.ts +2 -0
- package/templates/libs/storage-strategies/firebase/src/lib/__tests__/firebase-storage.contract.unit.test.ts +8 -0
- package/templates/libs/storage-strategies/firebase/src/lib/firebase-storage.strategy.ts +63 -0
- package/templates/libs/storage-strategies/firebase/src/lib/testing/mock-firebase-storage.ts +43 -0
- package/templates/libs/storage-strategies/firebase/tsconfig.json +24 -0
- package/templates/libs/storage-strategies/firebase/tsconfig.lib.json +23 -0
- package/templates/libs/storage-strategies/firebase/tsconfig.spec.json +22 -0
- package/templates/libs/storage-strategies/firebase/vitest.config.mts +22 -0
- package/templates/libs/storage-strategies/supabase/README.md +11 -0
- package/templates/libs/storage-strategies/supabase/eslint.config.mjs +22 -0
- package/templates/libs/storage-strategies/supabase/package.json +16 -0
- package/templates/libs/storage-strategies/supabase/project.json +19 -0
- package/templates/libs/storage-strategies/supabase/src/index.ts +2 -0
- package/templates/libs/storage-strategies/supabase/src/lib/__tests__/supabase-storage.contract.unit.test.ts +8 -0
- package/templates/libs/storage-strategies/supabase/src/lib/supabase-storage.strategy.ts +53 -0
- package/templates/libs/storage-strategies/supabase/src/lib/testing/mock-supabase-storage.ts +78 -0
- package/templates/libs/storage-strategies/supabase/tsconfig.json +24 -0
- package/templates/libs/storage-strategies/supabase/tsconfig.lib.json +23 -0
- package/templates/libs/storage-strategies/supabase/tsconfig.spec.json +22 -0
- package/templates/libs/storage-strategies/supabase/vitest.config.mts +22 -0
- package/templates/libs/template-shared/README.md +11 -0
- package/templates/libs/template-shared/eslint.config.mjs +23 -0
- package/templates/libs/template-shared/package.json +22 -0
- package/templates/libs/template-shared/project.json +19 -0
- package/templates/libs/template-shared/src/index.ts +9 -0
- package/templates/libs/template-shared/src/lib/abilities/ability-provider.tsx +19 -0
- package/templates/libs/template-shared/src/lib/api/create-api.ts +20 -0
- package/templates/libs/template-shared/src/lib/draft/index.ts +1 -0
- package/templates/libs/template-shared/src/lib/i18n/create-i18n.ts +42 -0
- package/templates/libs/template-shared/src/lib/i18n/keys.ts +30 -0
- package/templates/libs/template-shared/src/lib/landing/LandingPage.tsx +68 -0
- package/templates/libs/template-shared/src/lib/notify/use-notify.ts +26 -0
- package/templates/libs/template-shared/src/lib/stores/auth.store.ts +29 -0
- package/templates/libs/template-shared/src/lib/stores/loading.store.ts +13 -0
- package/templates/libs/template-shared/tsconfig.json +24 -0
- package/templates/libs/template-shared/tsconfig.lib.json +25 -0
- package/templates/libs/template-shared/tsconfig.spec.json +22 -0
- package/templates/libs/template-shared/vitest.config.mts +22 -0
- package/templates/libs/upload-client/README.md +11 -0
- package/templates/libs/upload-client/eslint.config.mjs +22 -0
- package/templates/libs/upload-client/package.json +15 -0
- package/templates/libs/upload-client/project.json +19 -0
- package/templates/libs/upload-client/src/index.ts +2 -0
- package/templates/libs/upload-client/src/lib/upload-client.module.ts +25 -0
- package/templates/libs/upload-client/src/lib/upload-client.service.ts +38 -0
- package/templates/libs/upload-client/tsconfig.json +24 -0
- package/templates/libs/upload-client/tsconfig.lib.json +26 -0
- package/templates/libs/upload-client/tsconfig.spec.json +22 -0
- package/templates/libs/upload-client/vitest.config.mts +22 -0
- package/templates/nx.json +113 -0
- package/templates/package.json +24 -0
- package/templates/tools/create-icore/_template-shell/package.json +24 -0
- package/templates/tsconfig.base.json +29 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "auth-client",
|
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
+
"sourceRoot": "libs/auth-client/src",
|
|
5
|
+
"projectType": "library",
|
|
6
|
+
"tags": [],
|
|
7
|
+
"targets": {
|
|
8
|
+
"build": {
|
|
9
|
+
"executor": "@nx/js:tsc",
|
|
10
|
+
"outputs": ["{options.outputPath}"],
|
|
11
|
+
"options": {
|
|
12
|
+
"outputPath": "dist/libs/auth-client",
|
|
13
|
+
"main": "libs/auth-client/src/index.ts",
|
|
14
|
+
"tsConfig": "libs/auth-client/tsconfig.lib.json",
|
|
15
|
+
"assets": ["libs/auth-client/*.md"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { DynamicModule, Module } from '@nestjs/common';
|
|
2
|
+
import { ClientsModule } from '@nestjs/microservices';
|
|
3
|
+
import { buildTransport } from '@icore/shared';
|
|
4
|
+
import { AuthClientService } from './auth-client.service';
|
|
5
|
+
|
|
6
|
+
export const AUTH_CLIENT = 'AUTH_CLIENT';
|
|
7
|
+
|
|
8
|
+
@Module({})
|
|
9
|
+
export class AuthClientModule {
|
|
10
|
+
static forRoot(): DynamicModule {
|
|
11
|
+
return {
|
|
12
|
+
module: AuthClientModule,
|
|
13
|
+
imports: [
|
|
14
|
+
ClientsModule.registerAsync([
|
|
15
|
+
{
|
|
16
|
+
name: AUTH_CLIENT,
|
|
17
|
+
useFactory: () => buildTransport('AUTH'),
|
|
18
|
+
},
|
|
19
|
+
]),
|
|
20
|
+
],
|
|
21
|
+
providers: [AuthClientService],
|
|
22
|
+
exports: [AuthClientService],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Inject, Injectable } from '@nestjs/common';
|
|
2
|
+
import { ClientProxy } from '@nestjs/microservices';
|
|
3
|
+
import { firstValueFrom } from 'rxjs';
|
|
4
|
+
import type { AuthSession, VerifiedToken } from '@icore/shared';
|
|
5
|
+
import { AUTH_CLIENT } from './auth-client.module';
|
|
6
|
+
|
|
7
|
+
@Injectable()
|
|
8
|
+
export class AuthClientService {
|
|
9
|
+
constructor(@Inject(AUTH_CLIENT) private readonly client: ClientProxy) {}
|
|
10
|
+
|
|
11
|
+
verify(token: string): Promise<VerifiedToken> {
|
|
12
|
+
return firstValueFrom(this.client.send<VerifiedToken>('auth.verify', { token }));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
login(email: string, password: string): Promise<AuthSession> {
|
|
16
|
+
return firstValueFrom(this.client.send<AuthSession>('auth.login', { email, password }));
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
signup(email: string, password: string): Promise<AuthSession> {
|
|
20
|
+
return firstValueFrom(this.client.send<AuthSession>('auth.signup', { email, password }));
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
refresh(refreshToken: string): Promise<AuthSession> {
|
|
24
|
+
return firstValueFrom(this.client.send<AuthSession>('auth.refresh', { refreshToken }));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
setRole(uid: string, role: string): Promise<void> {
|
|
28
|
+
return firstValueFrom(this.client.send<void>('auth.setRole', { uid, role }));
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.base.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"module": "node16",
|
|
5
|
+
"moduleResolution": "node16",
|
|
6
|
+
"forceConsistentCasingInFileNames": true,
|
|
7
|
+
"strict": true,
|
|
8
|
+
"importHelpers": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noImplicitReturns": true,
|
|
11
|
+
"noFallthroughCasesInSwitch": true,
|
|
12
|
+
"noPropertyAccessFromIndexSignature": true
|
|
13
|
+
},
|
|
14
|
+
"files": [],
|
|
15
|
+
"include": [],
|
|
16
|
+
"references": [
|
|
17
|
+
{
|
|
18
|
+
"path": "./tsconfig.lib.json"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"path": "./tsconfig.spec.json"
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../dist/out-tsc",
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"types": ["node"],
|
|
7
|
+
"experimentalDecorators": true,
|
|
8
|
+
"emitDecoratorMetadata": true,
|
|
9
|
+
"target": "es2021"
|
|
10
|
+
},
|
|
11
|
+
"include": ["src/**/*.ts"],
|
|
12
|
+
"exclude": [
|
|
13
|
+
"vite.config.ts",
|
|
14
|
+
"vite.config.mts",
|
|
15
|
+
"vitest.config.ts",
|
|
16
|
+
"vitest.config.mts",
|
|
17
|
+
"src/**/*.test.ts",
|
|
18
|
+
"src/**/*.spec.ts",
|
|
19
|
+
"src/**/*.test.tsx",
|
|
20
|
+
"src/**/*.spec.tsx",
|
|
21
|
+
"src/**/*.test.js",
|
|
22
|
+
"src/**/*.spec.js",
|
|
23
|
+
"src/**/*.test.jsx",
|
|
24
|
+
"src/**/*.spec.jsx"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../dist/out-tsc",
|
|
5
|
+
"types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"]
|
|
6
|
+
},
|
|
7
|
+
"include": [
|
|
8
|
+
"vite.config.ts",
|
|
9
|
+
"vite.config.mts",
|
|
10
|
+
"vitest.config.ts",
|
|
11
|
+
"vitest.config.mts",
|
|
12
|
+
"src/**/*.test.ts",
|
|
13
|
+
"src/**/*.spec.ts",
|
|
14
|
+
"src/**/*.test.tsx",
|
|
15
|
+
"src/**/*.spec.tsx",
|
|
16
|
+
"src/**/*.test.js",
|
|
17
|
+
"src/**/*.spec.js",
|
|
18
|
+
"src/**/*.test.jsx",
|
|
19
|
+
"src/**/*.spec.jsx",
|
|
20
|
+
"src/**/*.d.ts"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { defineConfig } from 'vitest/config';
|
|
2
|
+
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
|
3
|
+
import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
|
|
4
|
+
|
|
5
|
+
export default defineConfig(() => ({
|
|
6
|
+
root: __dirname,
|
|
7
|
+
cacheDir: '../../node_modules/.vite/libs/auth-client',
|
|
8
|
+
plugins: [nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
|
|
9
|
+
test: {
|
|
10
|
+
name: 'auth-client',
|
|
11
|
+
watch: false,
|
|
12
|
+
globals: true,
|
|
13
|
+
environment: 'node',
|
|
14
|
+
include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
15
|
+
passWithNoTests: true,
|
|
16
|
+
reporters: ['default'],
|
|
17
|
+
coverage: {
|
|
18
|
+
reportsDirectory: '../../coverage/libs/auth-client',
|
|
19
|
+
provider: 'v8' as const,
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
}));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# auth-firebase
|
|
2
|
+
|
|
3
|
+
This library was generated with [Nx](https://nx.dev).
|
|
4
|
+
|
|
5
|
+
## Building
|
|
6
|
+
|
|
7
|
+
Run `nx build auth-firebase` to build the library.
|
|
8
|
+
|
|
9
|
+
## Running unit tests
|
|
10
|
+
|
|
11
|
+
Run `nx test auth-firebase` to execute the unit tests via [Vitest](https://vitest.dev/).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import baseConfig from '../../../eslint.config.mjs';
|
|
2
|
+
|
|
3
|
+
export default [
|
|
4
|
+
...baseConfig,
|
|
5
|
+
{
|
|
6
|
+
files: ['**/*.json'],
|
|
7
|
+
rules: {
|
|
8
|
+
'@nx/dependency-checks': [
|
|
9
|
+
'error',
|
|
10
|
+
{
|
|
11
|
+
ignoredFiles: [
|
|
12
|
+
'{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}',
|
|
13
|
+
'{projectRoot}/vitest.config.{js,ts,mjs,mts}',
|
|
14
|
+
],
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
},
|
|
18
|
+
languageOptions: {
|
|
19
|
+
parser: await import('jsonc-eslint-parser'),
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@icore/auth-firebase",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"main": "./src/index.js",
|
|
7
|
+
"types": "./src/index.d.ts",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@icore/shared": "*",
|
|
10
|
+
"tslib": "^2.3.0"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"vitest": "^4.0.0"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "auth-firebase",
|
|
3
|
+
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
+
"sourceRoot": "libs/auth-strategies/firebase/src",
|
|
5
|
+
"projectType": "library",
|
|
6
|
+
"tags": [],
|
|
7
|
+
"targets": {
|
|
8
|
+
"build": {
|
|
9
|
+
"executor": "@nx/js:tsc",
|
|
10
|
+
"outputs": ["{options.outputPath}"],
|
|
11
|
+
"options": {
|
|
12
|
+
"outputPath": "dist/libs/auth-strategies/firebase",
|
|
13
|
+
"main": "libs/auth-strategies/firebase/src/index.ts",
|
|
14
|
+
"tsConfig": "libs/auth-strategies/firebase/tsconfig.lib.json",
|
|
15
|
+
"assets": ["libs/auth-strategies/firebase/*.md"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { runAuthContract } from '@icore/shared';
|
|
2
|
+
import { FirebaseAuthStrategy } from '../firebase-auth.strategy';
|
|
3
|
+
import { createMockIdentityToolkit } from '../testing/mock-identity-toolkit';
|
|
4
|
+
import { createMockAdminAuth } from '../testing/mock-admin-auth';
|
|
5
|
+
|
|
6
|
+
runAuthContract('FirebaseAuthStrategy', () => {
|
|
7
|
+
const toolkit = createMockIdentityToolkit();
|
|
8
|
+
const adminAuth = createMockAdminAuth({ identityToolkit: toolkit });
|
|
9
|
+
return new FirebaseAuthStrategy({
|
|
10
|
+
identityToolkit: toolkit.client,
|
|
11
|
+
adminAuth,
|
|
12
|
+
});
|
|
13
|
+
});
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import type { AuthSession, AuthStrategy, VerifiedToken } from '@icore/shared';
|
|
2
|
+
import type { IdentityToolkitClient } from './identity-toolkit.client';
|
|
3
|
+
|
|
4
|
+
export interface FirebaseAdminAuthLike {
|
|
5
|
+
verifyIdToken(idToken: string): Promise<{ uid: string; email?: string; role?: string }>;
|
|
6
|
+
setCustomUserClaims(uid: string, claims: Record<string, unknown>): Promise<void>;
|
|
7
|
+
getUser(
|
|
8
|
+
uid: string,
|
|
9
|
+
): Promise<{ uid: string; email?: string; customClaims?: Record<string, unknown> }>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface FirebaseAuthStrategyOptions {
|
|
13
|
+
identityToolkit: IdentityToolkitClient;
|
|
14
|
+
adminAuth: FirebaseAdminAuthLike;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export class FirebaseAuthStrategy implements AuthStrategy {
|
|
18
|
+
private readonly identityToolkit: IdentityToolkitClient;
|
|
19
|
+
private readonly adminAuth: FirebaseAdminAuthLike;
|
|
20
|
+
|
|
21
|
+
constructor(opts: FirebaseAuthStrategyOptions) {
|
|
22
|
+
this.identityToolkit = opts.identityToolkit;
|
|
23
|
+
this.adminAuth = opts.adminAuth;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
async signUp(email: string, password: string): Promise<AuthSession> {
|
|
27
|
+
const res = await this.identityToolkit.signUp(email, password);
|
|
28
|
+
return {
|
|
29
|
+
accessToken: res.idToken,
|
|
30
|
+
refreshToken: res.refreshToken,
|
|
31
|
+
expiresIn: Number(res.expiresIn),
|
|
32
|
+
user: { id: res.localId, email: res.email },
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
async signIn(email: string, password: string): Promise<AuthSession> {
|
|
37
|
+
const res = await this.identityToolkit.signIn(email, password);
|
|
38
|
+
return {
|
|
39
|
+
accessToken: res.idToken,
|
|
40
|
+
refreshToken: res.refreshToken,
|
|
41
|
+
expiresIn: Number(res.expiresIn),
|
|
42
|
+
user: { id: res.localId, email: res.email },
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
async refresh(refreshToken: string): Promise<AuthSession> {
|
|
47
|
+
const res = await this.identityToolkit.refresh(refreshToken);
|
|
48
|
+
// Firebase doesn't return email on the refresh endpoint; backfill via verifyIdToken
|
|
49
|
+
const verified = await this.adminAuth.verifyIdToken(res.id_token);
|
|
50
|
+
return {
|
|
51
|
+
accessToken: res.id_token,
|
|
52
|
+
refreshToken: res.refresh_token,
|
|
53
|
+
expiresIn: Number(res.expires_in),
|
|
54
|
+
user: { id: res.user_id, email: verified.email ?? '' },
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
async verifyToken(token: string): Promise<VerifiedToken> {
|
|
59
|
+
const decoded = await this.adminAuth.verifyIdToken(token);
|
|
60
|
+
return {
|
|
61
|
+
uid: decoded.uid,
|
|
62
|
+
email: decoded.email,
|
|
63
|
+
role: decoded.role,
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
async setRole(uid: string, role: string): Promise<void> {
|
|
68
|
+
await this.adminAuth.setCustomUserClaims(uid, { role });
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
async getRole(uid: string): Promise<string | null> {
|
|
72
|
+
const user = await this.adminAuth.getUser(uid);
|
|
73
|
+
const claims = user.customClaims ?? {};
|
|
74
|
+
const role = claims['role'];
|
|
75
|
+
return typeof role === 'string' ? role : null;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
export interface IdentityToolkitSignUpResponse {
|
|
2
|
+
localId: string;
|
|
3
|
+
email: string;
|
|
4
|
+
idToken: string;
|
|
5
|
+
refreshToken: string;
|
|
6
|
+
expiresIn: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface IdentityToolkitSignInResponse extends IdentityToolkitSignUpResponse {
|
|
10
|
+
registered: boolean;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface IdentityToolkitRefreshResponse {
|
|
14
|
+
id_token: string;
|
|
15
|
+
refresh_token: string;
|
|
16
|
+
expires_in: string;
|
|
17
|
+
user_id: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface IdentityToolkitClient {
|
|
21
|
+
signUp(email: string, password: string): Promise<IdentityToolkitSignUpResponse>;
|
|
22
|
+
signIn(email: string, password: string): Promise<IdentityToolkitSignInResponse>;
|
|
23
|
+
refresh(refreshToken: string): Promise<IdentityToolkitRefreshResponse>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
interface IdentityToolkitError {
|
|
27
|
+
error?: { message?: string; code?: number };
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export class HttpIdentityToolkitClient implements IdentityToolkitClient {
|
|
31
|
+
constructor(private readonly apiKey: string) {}
|
|
32
|
+
|
|
33
|
+
async signUp(email: string, password: string): Promise<IdentityToolkitSignUpResponse> {
|
|
34
|
+
return this.post<IdentityToolkitSignUpResponse>(
|
|
35
|
+
'https://identitytoolkit.googleapis.com/v1/accounts:signUp',
|
|
36
|
+
{ email, password, returnSecureToken: true },
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
async signIn(email: string, password: string): Promise<IdentityToolkitSignInResponse> {
|
|
41
|
+
return this.post<IdentityToolkitSignInResponse>(
|
|
42
|
+
'https://identitytoolkit.googleapis.com/v1/accounts:signInWithPassword',
|
|
43
|
+
{ email, password, returnSecureToken: true },
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
async refresh(refreshToken: string): Promise<IdentityToolkitRefreshResponse> {
|
|
48
|
+
const res = await fetch(`https://securetoken.googleapis.com/v1/token?key=${this.apiKey}`, {
|
|
49
|
+
method: 'POST',
|
|
50
|
+
headers: { 'content-type': 'application/x-www-form-urlencoded' },
|
|
51
|
+
body: new URLSearchParams({ grant_type: 'refresh_token', refresh_token: refreshToken }),
|
|
52
|
+
});
|
|
53
|
+
if (!res.ok) {
|
|
54
|
+
const payload = (await res.json().catch(() => ({}))) as IdentityToolkitError;
|
|
55
|
+
throw new Error(payload.error?.message ?? `firebase_refresh_failed_${res.status}`);
|
|
56
|
+
}
|
|
57
|
+
return res.json() as Promise<IdentityToolkitRefreshResponse>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
private async post<T>(url: string, body: Record<string, unknown>): Promise<T> {
|
|
61
|
+
const res = await fetch(`${url}?key=${this.apiKey}`, {
|
|
62
|
+
method: 'POST',
|
|
63
|
+
headers: { 'content-type': 'application/json' },
|
|
64
|
+
body: JSON.stringify(body),
|
|
65
|
+
});
|
|
66
|
+
if (!res.ok) {
|
|
67
|
+
const payload = (await res.json().catch(() => ({}))) as IdentityToolkitError;
|
|
68
|
+
throw new Error(payload.error?.message ?? `firebase_request_failed_${res.status}`);
|
|
69
|
+
}
|
|
70
|
+
return res.json() as Promise<T>;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { MockHandle } from './mock-identity-toolkit';
|
|
2
|
+
|
|
3
|
+
interface FakeAdminAuthOptions {
|
|
4
|
+
identityToolkit: MockHandle;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export interface FakeAdminAuth {
|
|
8
|
+
verifyIdToken(idToken: string): Promise<{ uid: string; email?: string; role?: string }>;
|
|
9
|
+
setCustomUserClaims(uid: string, claims: Record<string, unknown>): Promise<void>;
|
|
10
|
+
getUser(
|
|
11
|
+
uid: string,
|
|
12
|
+
): Promise<{ uid: string; email?: string; customClaims?: Record<string, unknown> }>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export function createMockAdminAuth(opts: FakeAdminAuthOptions): FakeAdminAuth {
|
|
16
|
+
const roles = new Map<string, string>();
|
|
17
|
+
|
|
18
|
+
return {
|
|
19
|
+
async verifyIdToken(idToken) {
|
|
20
|
+
const uid = opts.identityToolkit.tokensToUid.get(idToken);
|
|
21
|
+
if (!uid) throw new Error('TOKEN_NOT_FOUND');
|
|
22
|
+
const user = [...opts.identityToolkit.users.values()].find((u) => u.localId === uid);
|
|
23
|
+
if (!user) throw new Error('USER_NOT_FOUND');
|
|
24
|
+
return { uid: user.localId, email: user.email, role: roles.get(uid) };
|
|
25
|
+
},
|
|
26
|
+
async setCustomUserClaims(uid, claims) {
|
|
27
|
+
const role = claims['role'];
|
|
28
|
+
if (typeof role === 'string') roles.set(uid, role);
|
|
29
|
+
},
|
|
30
|
+
async getUser(uid) {
|
|
31
|
+
const user = [...opts.identityToolkit.users.values()].find((u) => u.localId === uid);
|
|
32
|
+
if (!user) throw new Error('USER_NOT_FOUND');
|
|
33
|
+
const role = roles.get(uid);
|
|
34
|
+
return {
|
|
35
|
+
uid: user.localId,
|
|
36
|
+
email: user.email,
|
|
37
|
+
customClaims: role ? { role } : undefined,
|
|
38
|
+
};
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { randomUUID } from 'node:crypto';
|
|
2
|
+
import type {
|
|
3
|
+
IdentityToolkitClient,
|
|
4
|
+
IdentityToolkitRefreshResponse,
|
|
5
|
+
IdentityToolkitSignInResponse,
|
|
6
|
+
IdentityToolkitSignUpResponse,
|
|
7
|
+
} from '../identity-toolkit.client';
|
|
8
|
+
|
|
9
|
+
interface FakeUser {
|
|
10
|
+
localId: string;
|
|
11
|
+
email: string;
|
|
12
|
+
password: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface MockHandle {
|
|
16
|
+
client: IdentityToolkitClient;
|
|
17
|
+
users: Map<string, FakeUser>;
|
|
18
|
+
tokensToUid: Map<string, string>;
|
|
19
|
+
refreshToUid: Map<string, string>;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function createMockIdentityToolkit(): MockHandle {
|
|
23
|
+
const users = new Map<string, FakeUser>();
|
|
24
|
+
const tokensToUid = new Map<string, string>();
|
|
25
|
+
const refreshToUid = new Map<string, string>();
|
|
26
|
+
|
|
27
|
+
function issue(user: FakeUser) {
|
|
28
|
+
const idToken = `id_${user.localId}_${randomUUID()}`;
|
|
29
|
+
const refreshToken = `rt_${user.localId}_${randomUUID()}`;
|
|
30
|
+
tokensToUid.set(idToken, user.localId);
|
|
31
|
+
refreshToUid.set(refreshToken, user.localId);
|
|
32
|
+
return { idToken, refreshToken, expiresIn: '3600' };
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const client: IdentityToolkitClient = {
|
|
36
|
+
async signUp(email, password) {
|
|
37
|
+
for (const u of users.values()) {
|
|
38
|
+
if (u.email === email) throw new Error('EMAIL_EXISTS');
|
|
39
|
+
}
|
|
40
|
+
const user: FakeUser = { localId: `uid_${users.size + 1}`, email, password };
|
|
41
|
+
users.set(user.localId, user);
|
|
42
|
+
const session = issue(user);
|
|
43
|
+
return { localId: user.localId, email, ...session } as IdentityToolkitSignUpResponse;
|
|
44
|
+
},
|
|
45
|
+
async signIn(email, password) {
|
|
46
|
+
for (const u of users.values()) {
|
|
47
|
+
if (u.email === email && u.password === password) {
|
|
48
|
+
const session = issue(u);
|
|
49
|
+
return {
|
|
50
|
+
localId: u.localId,
|
|
51
|
+
email,
|
|
52
|
+
registered: true,
|
|
53
|
+
...session,
|
|
54
|
+
} as IdentityToolkitSignInResponse;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
throw new Error('EMAIL_NOT_FOUND_OR_INVALID_PASSWORD');
|
|
58
|
+
},
|
|
59
|
+
async refresh(refreshToken) {
|
|
60
|
+
const uid = refreshToUid.get(refreshToken);
|
|
61
|
+
if (!uid) throw new Error('INVALID_REFRESH_TOKEN');
|
|
62
|
+
refreshToUid.delete(refreshToken); // Firebase rotates
|
|
63
|
+
const user = [...users.values()].find((u) => u.localId === uid);
|
|
64
|
+
if (!user) throw new Error('USER_NOT_FOUND');
|
|
65
|
+
const session = issue(user);
|
|
66
|
+
return {
|
|
67
|
+
id_token: session.idToken,
|
|
68
|
+
refresh_token: session.refreshToken,
|
|
69
|
+
expires_in: session.expiresIn,
|
|
70
|
+
user_id: user.localId,
|
|
71
|
+
} satisfies IdentityToolkitRefreshResponse;
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
return { client, users, tokensToUid, refreshToUid };
|
|
76
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../tsconfig.base.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"module": "node16",
|
|
5
|
+
"moduleResolution": "node16",
|
|
6
|
+
"forceConsistentCasingInFileNames": true,
|
|
7
|
+
"strict": true,
|
|
8
|
+
"importHelpers": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noImplicitReturns": true,
|
|
11
|
+
"noFallthroughCasesInSwitch": true,
|
|
12
|
+
"noPropertyAccessFromIndexSignature": true
|
|
13
|
+
},
|
|
14
|
+
"files": [],
|
|
15
|
+
"include": [],
|
|
16
|
+
"references": [
|
|
17
|
+
{
|
|
18
|
+
"path": "./tsconfig.lib.json"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"path": "./tsconfig.spec.json"
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../../dist/out-tsc",
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"types": ["node"]
|
|
7
|
+
},
|
|
8
|
+
"include": ["src/**/*.ts"],
|
|
9
|
+
"exclude": [
|
|
10
|
+
"vite.config.ts",
|
|
11
|
+
"vite.config.mts",
|
|
12
|
+
"vitest.config.ts",
|
|
13
|
+
"vitest.config.mts",
|
|
14
|
+
"src/**/*.test.ts",
|
|
15
|
+
"src/**/*.spec.ts",
|
|
16
|
+
"src/**/*.test.tsx",
|
|
17
|
+
"src/**/*.spec.tsx",
|
|
18
|
+
"src/**/*.test.js",
|
|
19
|
+
"src/**/*.spec.js",
|
|
20
|
+
"src/**/*.test.jsx",
|
|
21
|
+
"src/**/*.spec.jsx"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../../dist/out-tsc",
|
|
5
|
+
"types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"]
|
|
6
|
+
},
|
|
7
|
+
"include": [
|
|
8
|
+
"vite.config.ts",
|
|
9
|
+
"vite.config.mts",
|
|
10
|
+
"vitest.config.ts",
|
|
11
|
+
"vitest.config.mts",
|
|
12
|
+
"src/**/*.test.ts",
|
|
13
|
+
"src/**/*.spec.ts",
|
|
14
|
+
"src/**/*.test.tsx",
|
|
15
|
+
"src/**/*.spec.tsx",
|
|
16
|
+
"src/**/*.test.js",
|
|
17
|
+
"src/**/*.spec.js",
|
|
18
|
+
"src/**/*.test.jsx",
|
|
19
|
+
"src/**/*.spec.jsx",
|
|
20
|
+
"src/**/*.d.ts"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { defineConfig } from 'vitest/config';
|
|
2
|
+
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
|
3
|
+
import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
|
|
4
|
+
|
|
5
|
+
export default defineConfig(() => ({
|
|
6
|
+
root: __dirname,
|
|
7
|
+
cacheDir: '../../../node_modules/.vite/libs/auth-strategies/firebase',
|
|
8
|
+
plugins: [nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
|
|
9
|
+
test: {
|
|
10
|
+
name: 'auth-firebase',
|
|
11
|
+
watch: false,
|
|
12
|
+
globals: true,
|
|
13
|
+
environment: 'node',
|
|
14
|
+
include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
15
|
+
passWithNoTests: true,
|
|
16
|
+
reporters: ['default'],
|
|
17
|
+
coverage: {
|
|
18
|
+
reportsDirectory: '../../../coverage/libs/auth-strategies/firebase',
|
|
19
|
+
provider: 'v8' as const,
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
}));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# auth-supabase
|
|
2
|
+
|
|
3
|
+
This library was generated with [Nx](https://nx.dev).
|
|
4
|
+
|
|
5
|
+
## Building
|
|
6
|
+
|
|
7
|
+
Run `nx build auth-supabase` to build the library.
|
|
8
|
+
|
|
9
|
+
## Running unit tests
|
|
10
|
+
|
|
11
|
+
Run `nx test auth-supabase` to execute the unit tests via [Vitest](https://vitest.dev/).
|