Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Oct 19, 2023
1 parent fafce9d commit fb5a9b5
Show file tree
Hide file tree
Showing 28 changed files with 216 additions and 750 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ node_modules/

*.DS_Store
package-lock.json
swagger.json
.npmrc
*.sh
7 changes: 5 additions & 2 deletions nestia.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { INestiaConfig } from "@nestia/sdk";
import { NestFactory } from "@nestjs/core";

import { MyModule } from "./src/MyModule";

export const NESTIA_CONFIG: INestiaConfig = {
simulate: true,
input: "src/controllers",
input: async () => NestFactory.create(await MyModule()),
output: "src/api",
swagger: {
output: "packages/api/swagger.json",
Expand All @@ -13,5 +15,6 @@ export const NESTIA_CONFIG: INestiaConfig = {
},
],
},
simulate: true,
};
export default NESTIA_CONFIG;
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"homepage": "https://github.com/samchon/backend",
"devDependencies": {
"@nestia/e2e": "^0.3.6",
"@nestia/sdk": "^2.2.3",
"@nestia/sdk": "^2.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/cli": "^0.11.19",
"@types/inquirer": "^8.2.5",
Expand All @@ -64,7 +64,7 @@
"cli": "^1.0.1",
"eslint-plugin-deprecation": "^1.4.1",
"inquirer": "^8.2.5",
"nestia": "^5.0.1",
"nestia": "^5.0.2",
"pm2": "^4.5.6",
"prettier": "^2.6.2",
"prisma-markdown": "^1.0.0",
Expand All @@ -76,7 +76,7 @@
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"@nestia/core": "^2.2.3",
"@nestia/core": "^2.3.0",
"@prisma/client": "^5.3.1",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
Expand All @@ -85,7 +85,7 @@
"prisma": "^5.3.1",
"source-map-support": "^0.5.19",
"tstl": "^2.5.13",
"typia": "^5.2.2"
"typia": "^5.2.3"
},
"private": true
}
4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"homepage": "https://github.com/samchon/backend#readme",
"dependencies": {
"@nestia/fetcher": "^2.2.3",
"typia": "^5.2.2"
"@nestia/fetcher": "^2.3.0",
"typia": "^5.2.3"
},
"include": [
"lib",
Expand Down
Loading

0 comments on commit fb5a9b5

Please sign in to comment.