Skip to content

Commit e577c59

Browse files
committed
chores: Usable lockfile
1 parent d194830 commit e577c59

File tree

4 files changed

+1014
-1204
lines changed

4 files changed

+1014
-1204
lines changed

packages/cli/src/routeGeneration/routeGenerator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export abstract class AbstractRouteGenerator<Config extends ExtendedRoutesConfig
143143
fileSize: 8388608, // 8mb
144144
},
145145
...this.options.multerOpts,
146-
},
146+
} as Config['multerOpts'],
147147
useSecurity: this.metadata.controllers.some(controller => controller.methods.some(method => !!method.security.length)),
148148
esm: this.options.esm,
149149
};

tests/esm/package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@
2121
},
2222
"engineStrict": true,
2323
"devDependencies": {
24-
"@types/chai-as-promised": "^8.0.0",
25-
"@types/mocha": "^10.0.8",
24+
"@types/chai-as-promised": "^8.0.1",
25+
"@types/mocha": "^10.0.10",
2626
"@types/node": "^16.18.23",
2727
"chai": "^4.3.10",
2828
"chai-as-promised": "^7.1.1",
29+
"lerna": "^8.1.9",
2930
"mocha": "^10.7.3",
31+
"prettier": "^3.4.2",
3032
"ts-node": "^10.9.2",
31-
"tslib": "^2.7.0",
32-
"typescript": "^5.6.2"
33+
"tslib": "^2.8.1",
34+
"typescript": "^5.7.2"
3335
}
3436
}

tests/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"author": "Luke Autry <[email protected]> (http://www.lukeautry.com)",
2727
"license": "MIT",
2828
"devDependencies": {
29-
"@hapi/hapi": "^21.3.10",
29+
"@hapi/hapi": "^21.3.12",
3030
"@koa/multer": "^3.0.2",
3131
"@koa/router": "^13.1.0",
3232
"@types/body-parser": "^1.19.5",
@@ -35,43 +35,43 @@
3535
"@types/koa": "^2.15.0",
3636
"@types/koa-bodyparser": "^4.3.12",
3737
"@types/koa__router": "^12.0.4",
38-
"@types/method-override": "0.0.35",
39-
"@types/mocha": "^10.0.8",
38+
"@types/method-override": "3.0.0",
39+
"@types/mocha": "^10.0.10",
4040
"@types/multer": "1.4.12",
4141
"@types/node": "^18.0.0",
4242
"@types/promise.any": "^2.0.3",
4343
"@types/sinon": "^17.0.3",
4444
"@types/supertest": "^6.0.2",
4545
"@typescript-eslint/eslint-plugin": "6.16.0",
4646
"@typescript-eslint/parser": "^6.16.0",
47-
"aws-cdk-lib": "^2.159.1",
47+
"aws-cdk-lib": "^2.172.0",
4848
"body-parser": "^1.20.3",
4949
"chai": "^4.3.10",
5050
"chalk": "^4.1.2",
51-
"constructs": "^10.3.0",
51+
"constructs": "^10.4.2",
5252
"cross-env": "^7.0.3",
5353
"eslint": "^8.56.0",
5454
"eslint-config-prettier": "^9.1.0",
55-
"express": "^4.21.0",
55+
"express": "^4.21.2",
5656
"husky": "^8.0.3",
57-
"inversify": "^6.0.2",
57+
"inversify": "^6.1.6",
5858
"inversify-binding-decorators": "^4.0.0",
5959
"joi": "^17.13.3",
6060
"koa": "^2.15.3",
6161
"koa-bodyparser": "^4.4.0",
62-
"lerna": "^8.1.8",
62+
"lerna": "^8.1.9",
6363
"lint-staged": "^15.2.10",
6464
"method-override": "^3.0.0",
6565
"mocha": "^10.7.3",
6666
"multer": "^1.4.5-lts.1",
67-
"prettier": "^3.3.3",
67+
"prettier": "^3.4.2",
6868
"reflect-metadata": "^0.2.2",
6969
"rimraf": "^5.0.5",
7070
"sinon": "^19.0.2",
7171
"supertest": "^7.0.0",
7272
"ts-node": "^10.9.2",
7373
"tsconfig-paths": "^4.2.0",
74-
"typescript": "^5.6.2"
74+
"typescript": "^5.7.2"
7575
},
7676
"repository": {
7777
"type": "git",

0 commit comments

Comments
 (0)