File tree Expand file tree Collapse file tree 6 files changed +417
-1168
lines changed Expand file tree Collapse file tree 6 files changed +417
-1168
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 6.0.0-rc.0" ,
3
3
"npmClient" : " yarn" ,
4
- "useWorkspaces" : true ,
5
4
"command" : {
6
5
"version" : {
7
6
"allowBranch" : " master"
8
7
},
9
8
"publish" : {
10
9
"allowBranch" : " master"
11
10
}
12
- }
11
+ },
12
+ "$schema" : " node_modules/lerna/schemas/lerna-schema.json"
13
13
}
Original file line number Diff line number Diff line change 43
43
},
44
44
"dependencies" : {},
45
45
"devDependencies" : {
46
- "@typescript-eslint/eslint-plugin" : " 5.57 .0" ,
46
+ "@typescript-eslint/eslint-plugin" : " 5.60 .0" ,
47
47
"@typescript-eslint/parser" : " ^5.57.0" ,
48
48
"eslint" : " ^8.37.0" ,
49
49
"eslint-config-prettier" : " ^8.8.0" ,
50
50
"husky" : " ^4.3.0" ,
51
- "lerna" : " ^6.6.1 " ,
51
+ "lerna" : " ^7.0.2 " ,
52
52
"lint-staged" : " ^13.2.0" ,
53
53
"prettier" : " ^2.8.7" ,
54
54
"ts-node" : " ^10.9.1"
Original file line number Diff line number Diff line change 33
33
"@tsoa/runtime" : " ^6.0.0-rc.0" ,
34
34
"deepmerge" : " ^4.3.1" ,
35
35
"fs-extra" : " ^11.1.1" ,
36
- "glob" : " ^9 .3.4 " ,
36
+ "glob" : " ^10 .3.0 " ,
37
37
"handlebars" : " ^4.7.7" ,
38
38
"merge-anything" : " ^5.1.4" ,
39
- "minimatch" : " ^8 .0.2 " ,
39
+ "minimatch" : " ^9 .0.1 " ,
40
40
"typescript" : " ^5.0.3" ,
41
41
"validator" : " ^13.9.0" ,
42
42
"yamljs" : " ^0.3.0" ,
50
50
"@types/yamljs" : " ^0.2.31" ,
51
51
"@types/yargs" : " ^17.0.24" ,
52
52
"copyfiles" : " ^2.4.1" ,
53
- "rimraf" : " ^4.4 .1"
53
+ "rimraf" : " ^5.0 .1"
54
54
},
55
55
"repository" : {
56
56
"type" : " git" ,
Original file line number Diff line number Diff line change 1
- import mm from 'minimatch' ;
1
+ import { minimatch } from 'minimatch' ;
2
2
import { importClassesFromDirectories } from '../utils/importClassesFromDirectories' ;
3
3
import { ControllerGenerator } from './controllerGenerator' ;
4
4
import { GenerateMetadataError } from './exceptions' ;
@@ -54,7 +54,7 @@ export class MetadataGenerator {
54
54
this . program . getSourceFiles ( ) . forEach ( sf => {
55
55
if ( this . ignorePaths && this . ignorePaths . length ) {
56
56
for ( const path of this . ignorePaths ) {
57
- if ( mm ( sf . fileName , path ) ) {
57
+ if ( minimatch ( sf . fileName , path ) ) {
58
58
return ;
59
59
}
60
60
}
Original file line number Diff line number Diff line change 42
42
"@types/promise.any" : " ^2.0.0" ,
43
43
"@types/sinon" : " ^10.0.13" ,
44
44
"@types/supertest" : " ^2.0.12" ,
45
- "@typescript-eslint/eslint-plugin" : " 5.57 .0" ,
45
+ "@typescript-eslint/eslint-plugin" : " 5.60 .0" ,
46
46
"@typescript-eslint/parser" : " ^5.57.0" ,
47
47
"aws-cdk-lib" : " ^2.72.1" ,
48
48
"body-parser" : " ^1.20.2" ,
58
58
"inversify-binding-decorators" : " ^4.0.0" ,
59
59
"koa" : " ^2.14.1" ,
60
60
"koa-bodyparser" : " ^4.4.0" ,
61
- "lerna" : " ^6.6.1 " ,
61
+ "lerna" : " ^7.0.2 " ,
62
62
"lint-staged" : " ^13.2.0" ,
63
63
"method-override" : " ^3.0.0" ,
64
64
"mocha" : " ^10.2.0" ,
65
65
"multer" : " ^1.4.5-lts.1" ,
66
66
"prettier" : " ^2.8.7" ,
67
67
"reflect-metadata" : " ^0.1.13" ,
68
- "rimraf" : " ^4.4 .1" ,
68
+ "rimraf" : " ^5.0 .1" ,
69
69
"sinon" : " ^15.0.3" ,
70
70
"supertest" : " ^6.3.3" ,
71
71
"ts-node" : " ^10.9.1" ,
You can’t perform that action at this time.
0 commit comments