Skip to content

Commit

Permalink
chores: Upgrade lerna, izs
Browse files Browse the repository at this point in the history
  • Loading branch information
WoH committed Jun 23, 2023
1 parent 8bc9172 commit d2884b3
Show file tree
Hide file tree
Showing 6 changed files with 417 additions and 1,168 deletions.
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "6.0.0-rc.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
"version": {
"allowBranch": "master"
},
"publish": {
"allowBranch": "master"
}
}
},
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^4.3.0",
"lerna": "^6.6.1",
"lerna": "^7.0.2",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"@tsoa/runtime": "^6.0.0-rc.0",
"deepmerge": "^4.3.1",
"fs-extra": "^11.1.1",
"glob": "^9.3.4",
"glob": "^10.3.0",
"handlebars": "^4.7.7",
"merge-anything": "^5.1.4",
"minimatch": "^8.0.2",
"minimatch": "^9.0.1",
"typescript": "^5.0.3",
"validator": "^13.9.0",
"yamljs": "^0.3.0",
Expand All @@ -50,7 +50,7 @@
"@types/yamljs": "^0.2.31",
"@types/yargs": "^17.0.24",
"copyfiles": "^2.4.1",
"rimraf": "^4.4.1"
"rimraf": "^5.0.1"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/metadataGeneration/metadataGenerator.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import mm from 'minimatch';
import { minimatch } from 'minimatch';
import { importClassesFromDirectories } from '../utils/importClassesFromDirectories';
import { ControllerGenerator } from './controllerGenerator';
import { GenerateMetadataError } from './exceptions';
Expand Down Expand Up @@ -54,7 +54,7 @@ export class MetadataGenerator {
this.program.getSourceFiles().forEach(sf => {
if (this.ignorePaths && this.ignorePaths.length) {
for (const path of this.ignorePaths) {
if (mm(sf.fileName, path)) {
if (minimatch(sf.fileName, path)) {
return;
}
}
Expand Down
6 changes: 3 additions & 3 deletions tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@types/promise.any": "^2.0.0",
"@types/sinon": "^10.0.13",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "^5.57.0",
"aws-cdk-lib": "^2.72.1",
"body-parser": "^1.20.2",
Expand All @@ -58,14 +58,14 @@
"inversify-binding-decorators": "^4.0.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.4.0",
"lerna": "^6.6.1",
"lerna": "^7.0.2",
"lint-staged": "^13.2.0",
"method-override": "^3.0.0",
"mocha": "^10.2.0",
"multer": "^1.4.5-lts.1",
"prettier": "^2.8.7",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.4.1",
"rimraf": "^5.0.1",
"sinon": "^15.0.3",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
Expand Down
Loading

0 comments on commit d2884b3

Please sign in to comment.