@forklaunch/express 0.9.27 → 0.9.28
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 +8 -1
- package/lib/index.mjs +8 -1
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -2077,7 +2077,14 @@ var Application = class extends import_http3.ForklaunchExpressLikeApplication {
|
|
|
2077
2077
|
);
|
|
2078
2078
|
import_fs.default.writeFileSync(
|
|
2079
2079
|
process.env.FORKLAUNCH_OPENAPI_OUTPUT,
|
|
2080
|
-
JSON.stringify(
|
|
2080
|
+
JSON.stringify(
|
|
2081
|
+
{
|
|
2082
|
+
...openApiSpec,
|
|
2083
|
+
"": openApiSpec[import_http3.OPENAPI_DEFAULT_VERSION]
|
|
2084
|
+
},
|
|
2085
|
+
null,
|
|
2086
|
+
2
|
|
2087
|
+
)
|
|
2081
2088
|
);
|
|
2082
2089
|
process.exit(0);
|
|
2083
2090
|
}
|
package/lib/index.mjs
CHANGED
|
@@ -2050,7 +2050,14 @@ var Application = class extends ForklaunchExpressLikeApplication {
|
|
|
2050
2050
|
);
|
|
2051
2051
|
fs2.writeFileSync(
|
|
2052
2052
|
process.env.FORKLAUNCH_OPENAPI_OUTPUT,
|
|
2053
|
-
JSON.stringify(
|
|
2053
|
+
JSON.stringify(
|
|
2054
|
+
{
|
|
2055
|
+
...openApiSpec,
|
|
2056
|
+
"": openApiSpec[OPENAPI_DEFAULT_VERSION]
|
|
2057
|
+
},
|
|
2058
|
+
null,
|
|
2059
|
+
2
|
|
2060
|
+
)
|
|
2054
2061
|
);
|
|
2055
2062
|
process.exit(0);
|
|
2056
2063
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/express",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.28",
|
|
4
4
|
"description": "Forklaunch framework for express.",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"range-parser": "^1.2.1",
|
|
39
39
|
"swagger-ui-express": "^5.0.1",
|
|
40
40
|
"@forklaunch/common": "0.6.19",
|
|
41
|
-
"@forklaunch/
|
|
42
|
-
"@forklaunch/
|
|
41
|
+
"@forklaunch/core": "0.15.9",
|
|
42
|
+
"@forklaunch/validator": "0.10.19"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@eslint/js": "^9.37.0",
|