Skip to content

Commit d2884b3

Browse files
committed
chores: Upgrade lerna, izs
1 parent 8bc9172 commit d2884b3

File tree

6 files changed

+417
-1168
lines changed

6 files changed

+417
-1168
lines changed

lerna.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"version": "6.0.0-rc.0",
33
"npmClient": "yarn",
4-
"useWorkspaces": true,
54
"command": {
65
"version": {
76
"allowBranch": "master"
87
},
98
"publish": {
109
"allowBranch": "master"
1110
}
12-
}
11+
},
12+
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1313
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
},
4444
"dependencies": {},
4545
"devDependencies": {
46-
"@typescript-eslint/eslint-plugin": "5.57.0",
46+
"@typescript-eslint/eslint-plugin": "5.60.0",
4747
"@typescript-eslint/parser": "^5.57.0",
4848
"eslint": "^8.37.0",
4949
"eslint-config-prettier": "^8.8.0",
5050
"husky": "^4.3.0",
51-
"lerna": "^6.6.1",
51+
"lerna": "^7.0.2",
5252
"lint-staged": "^13.2.0",
5353
"prettier": "^2.8.7",
5454
"ts-node": "^10.9.1"

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
"@tsoa/runtime": "^6.0.0-rc.0",
3434
"deepmerge": "^4.3.1",
3535
"fs-extra": "^11.1.1",
36-
"glob": "^9.3.4",
36+
"glob": "^10.3.0",
3737
"handlebars": "^4.7.7",
3838
"merge-anything": "^5.1.4",
39-
"minimatch": "^8.0.2",
39+
"minimatch": "^9.0.1",
4040
"typescript": "^5.0.3",
4141
"validator": "^13.9.0",
4242
"yamljs": "^0.3.0",
@@ -50,7 +50,7 @@
5050
"@types/yamljs": "^0.2.31",
5151
"@types/yargs": "^17.0.24",
5252
"copyfiles": "^2.4.1",
53-
"rimraf": "^4.4.1"
53+
"rimraf": "^5.0.1"
5454
},
5555
"repository": {
5656
"type": "git",

packages/cli/src/metadataGeneration/metadataGenerator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import mm from 'minimatch';
1+
import { minimatch } from 'minimatch';
22
import { importClassesFromDirectories } from '../utils/importClassesFromDirectories';
33
import { ControllerGenerator } from './controllerGenerator';
44
import { GenerateMetadataError } from './exceptions';
@@ -54,7 +54,7 @@ export class MetadataGenerator {
5454
this.program.getSourceFiles().forEach(sf => {
5555
if (this.ignorePaths && this.ignorePaths.length) {
5656
for (const path of this.ignorePaths) {
57-
if (mm(sf.fileName, path)) {
57+
if (minimatch(sf.fileName, path)) {
5858
return;
5959
}
6060
}

tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@types/promise.any": "^2.0.0",
4343
"@types/sinon": "^10.0.13",
4444
"@types/supertest": "^2.0.12",
45-
"@typescript-eslint/eslint-plugin": "5.57.0",
45+
"@typescript-eslint/eslint-plugin": "5.60.0",
4646
"@typescript-eslint/parser": "^5.57.0",
4747
"aws-cdk-lib": "^2.72.1",
4848
"body-parser": "^1.20.2",
@@ -58,14 +58,14 @@
5858
"inversify-binding-decorators": "^4.0.0",
5959
"koa": "^2.14.1",
6060
"koa-bodyparser": "^4.4.0",
61-
"lerna": "^6.6.1",
61+
"lerna": "^7.0.2",
6262
"lint-staged": "^13.2.0",
6363
"method-override": "^3.0.0",
6464
"mocha": "^10.2.0",
6565
"multer": "^1.4.5-lts.1",
6666
"prettier": "^2.8.7",
6767
"reflect-metadata": "^0.1.13",
68-
"rimraf": "^4.4.1",
68+
"rimraf": "^5.0.1",
6969
"sinon": "^15.0.3",
7070
"supertest": "^6.3.3",
7171
"ts-node": "^10.9.1",

0 commit comments

Comments
 (0)