@forklaunch/express 1.2.15 → 1.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -0
- package/lib/index.mjs +1 -0
- package/package.json +5 -5
package/lib/index.js
CHANGED
|
@@ -2034,6 +2034,7 @@ var Application = class extends import_http3.ForklaunchExpressLikeApplication {
|
|
|
2034
2034
|
this.openapiConfiguration = options2?.openapi;
|
|
2035
2035
|
}
|
|
2036
2036
|
listen(...args) {
|
|
2037
|
+
this.validateAllRoutes();
|
|
2037
2038
|
if (process.env.FORKLAUNCH_MODE === "openapi") {
|
|
2038
2039
|
const openApiSpec = (0, import_http3.generateOpenApiSpecs)(
|
|
2039
2040
|
this.schemaValidator,
|
package/lib/index.mjs
CHANGED
|
@@ -2010,6 +2010,7 @@ var Application = class extends ForklaunchExpressLikeApplication {
|
|
|
2010
2010
|
this.openapiConfiguration = options2?.openapi;
|
|
2011
2011
|
}
|
|
2012
2012
|
listen(...args) {
|
|
2013
|
+
this.validateAllRoutes();
|
|
2013
2014
|
if (process.env.FORKLAUNCH_MODE === "openapi") {
|
|
2014
2015
|
const openApiSpec = generateOpenApiSpecs(
|
|
2015
2016
|
this.schemaValidator,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/express",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.17",
|
|
4
4
|
"description": "Forklaunch framework for express.",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"qs": "^6.15.0",
|
|
38
38
|
"range-parser": "^1.2.1",
|
|
39
39
|
"swagger-ui-express": "^5.0.1",
|
|
40
|
-
"@forklaunch/
|
|
41
|
-
"@forklaunch/
|
|
42
|
-
"@forklaunch/
|
|
40
|
+
"@forklaunch/validator": "1.2.9",
|
|
41
|
+
"@forklaunch/core": "1.3.7",
|
|
42
|
+
"@forklaunch/common": "1.2.9"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@eslint/js": "^10.0.1",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@types/qs": "^6.15.0",
|
|
55
55
|
"@types/range-parser": "^1.2.7",
|
|
56
56
|
"@types/swagger-ui-express": "^4.1.8",
|
|
57
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
57
|
+
"@typescript/native-preview": "7.0.0-dev.20260329.1",
|
|
58
58
|
"jest": "^30.3.0",
|
|
59
59
|
"kill-port-process": "^4.0.2",
|
|
60
60
|
"prettier": "^3.8.1",
|