Skip to content

Commit

Permalink
build: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
CatsMiaow committed Apr 3, 2024
1 parent a23a856 commit d1f5f89
Show file tree
Hide file tree
Showing 9 changed files with 1,593 additions and 1,130 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ node_modules

# Optional REPL history
.node_repl_history

.nx/cache
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ npm ci -w sample-nestjs-app --omit=dev
| +-- sample-nestjs-app // NestJS server sample-app
+-- packages
| +-- sample-lib // TypeScript simple sample-package
| +-- sample-nestjs-app // NestJS module sample-package
| +-- sample-nestjs-lib // NestJS module sample-package
+-- .eslintrc // ESLint common configuration
+-- jest.config.ts // Jest common configuration
+-- lerna.json // Lerna configuration
Expand Down
10 changes: 5 additions & 5 deletions apps/sample-nestjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"debug": "nest start --debug --watch"
},
"dependencies": {
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"@nestjs/platform-express": "^10.2.7",
"@nestjs/common": "^10.3.7",
"@nestjs/core": "^10.3.7",
"@nestjs/platform-express": "^10.3.7",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"sample-lib": "*",
"sample-nestjs-lib": "*"
},
"devDependencies": {
"@nestjs/cli": "^10.1.18",
"@nestjs/testing": "^10.2.7"
"@nestjs/cli": "^10.3.2",
"@nestjs/testing": "^10.3.7"
}
}
17 changes: 7 additions & 10 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,21 @@
"sharedGlobals": [],
"production": ["default"]
},
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "test", "lint"]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/dist"]
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"test": {
"dependsOn": ["^build"]
"dependsOn": ["^build"],
"cache": true
},
"dev": {
"dependsOn": ["^build"]
},
"lint": {
"cache": true
}
}
}
Loading

0 comments on commit d1f5f89

Please sign in to comment.