Skip to content

Commit

Permalink
chore(auth): rename package name from @tsangste/auth to @tsangste/nes…
Browse files Browse the repository at this point in the history
…tjs-auth
  • Loading branch information
tsangste committed Jan 9, 2023
1 parent 780a2e6 commit a510e20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions apps/api/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Module } from '@nestjs/common';
import { Module } from '@nestjs/common'

import { AuthModule } from '@tsangste/auth'
import { AuthModule } from '@tsangste/nestjs-auth'

import { AppController } from './app.controller';
import { AppService } from './app.service';
import { AppController } from './app.controller'
import { AppService } from './app.service'

@Module({
imports: [AuthModule],
Expand Down
2 changes: 1 addition & 1 deletion libs/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tsangste/auth",
"name": "@tsangste/nestjs-auth",
"version": "0.0.0-semantic-release",
"type": "commonjs",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@tsangste/auth": ["libs/auth/src/index.ts"],
"@tsangste/nestjs-auth": ["libs/auth/src/index.ts"],
"@tsangste/storage": ["libs/storage/src/index.ts"]
}
},
Expand Down

0 comments on commit a510e20

Please sign in to comment.