Skip to content

Commit

Permalink
feat: ✨ initial auth application
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Dec 2, 2024
1 parent 07dd0a0 commit e51d448
Show file tree
Hide file tree
Showing 11 changed files with 82 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libs/auth/application/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# auth-application

This library was generated with [Nx](https://nx.dev).

## Running unit tests

Run `nx test auth-application` to execute the unit tests via [Jest](https://jestjs.io).
3 changes: 3 additions & 0 deletions libs/auth/application/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const baseConfig = require('../../../eslint.config.js');

module.exports = [...baseConfig];
10 changes: 10 additions & 0 deletions libs/auth/application/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
displayName: 'auth-application',
preset: '../../../jest.preset.js',
testEnvironment: 'node',
transform: {
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../../coverage/libs/auth/application',
};
9 changes: 9 additions & 0 deletions libs/auth/application/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "auth-application",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/auth/application/src",
"projectType": "library",
"tags": [],
"// targets": "to see all targets run: nx show project auth-application --web",
"targets": {}
}
1 change: 1 addition & 0 deletions libs/auth/application/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/auth-application';
7 changes: 7 additions & 0 deletions libs/auth/application/src/lib/auth-application.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { authApplication } from './auth-application';

describe('authApplication', () => {
it('should work', () => {
expect(authApplication()).toEqual('auth-application');
});
});
3 changes: 3 additions & 0 deletions libs/auth/application/src/lib/auth-application.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function authApplication(): string {
return 'auth-application';
}
16 changes: 16 additions & 0 deletions libs/auth/application/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs"
},
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}
11 changes: 11 additions & 0 deletions libs/auth/application/tsconfig.lib.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"outDir": "../../../dist/out-tsc",
"declaration": true,
"types": ["node"]
},
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"],
"include": ["src/**/*.ts"]
}
14 changes: 14 additions & 0 deletions libs/auth/application/tsconfig.spec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node"]
},
"include": [
"jest.config.ts",
"src/**/*.test.ts",
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
}
1 change: 1 addition & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@auth/application": ["libs/auth/application/src/index.ts"],
"@auth/interface-adapters": ["libs/auth/interface-adapters/src/index.ts"],
"@prompt/domain": ["libs/prompt/domain/src/index.ts"],
"@shared/config": ["libs/shared/config/src/index.ts"],
Expand Down

0 comments on commit e51d448

Please sign in to comment.