@forklaunch/hyper-express 0.9.26 → 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 +10 -10
 
    
        package/lib/index.js
    CHANGED
    
    | 
         @@ -474,7 +474,14 @@ var Application = class extends import_http13.ForklaunchExpressLikeApplication { 
     | 
|
| 
       474 
474 
     | 
    
         
             
                  );
         
     | 
| 
       475 
475 
     | 
    
         
             
                  import_fs.default.writeFileSync(
         
     | 
| 
       476 
476 
     | 
    
         
             
                    process.env.FORKLAUNCH_OPENAPI_OUTPUT,
         
     | 
| 
       477 
     | 
    
         
            -
                    JSON.stringify( 
     | 
| 
      
 477 
     | 
    
         
            +
                    JSON.stringify(
         
     | 
| 
      
 478 
     | 
    
         
            +
                      {
         
     | 
| 
      
 479 
     | 
    
         
            +
                        ...openApiSpec,
         
     | 
| 
      
 480 
     | 
    
         
            +
                        "": openApiSpec[import_http13.OPENAPI_DEFAULT_VERSION]
         
     | 
| 
      
 481 
     | 
    
         
            +
                      },
         
     | 
| 
      
 482 
     | 
    
         
            +
                      null,
         
     | 
| 
      
 483 
     | 
    
         
            +
                      2
         
     | 
| 
      
 484 
     | 
    
         
            +
                    )
         
     | 
| 
       478 
485 
     | 
    
         
             
                  );
         
     | 
| 
       479 
486 
     | 
    
         
             
                  process.exit(0);
         
     | 
| 
       480 
487 
     | 
    
         
             
                }
         
     | 
    
        package/lib/index.mjs
    CHANGED
    
    | 
         @@ -468,7 +468,14 @@ var Application = class extends ForklaunchExpressLikeApplication { 
     | 
|
| 
       468 
468 
     | 
    
         
             
                  );
         
     | 
| 
       469 
469 
     | 
    
         
             
                  fs.writeFileSync(
         
     | 
| 
       470 
470 
     | 
    
         
             
                    process.env.FORKLAUNCH_OPENAPI_OUTPUT,
         
     | 
| 
       471 
     | 
    
         
            -
                    JSON.stringify( 
     | 
| 
      
 471 
     | 
    
         
            +
                    JSON.stringify(
         
     | 
| 
      
 472 
     | 
    
         
            +
                      {
         
     | 
| 
      
 473 
     | 
    
         
            +
                        ...openApiSpec,
         
     | 
| 
      
 474 
     | 
    
         
            +
                        "": openApiSpec[OPENAPI_DEFAULT_VERSION]
         
     | 
| 
      
 475 
     | 
    
         
            +
                      },
         
     | 
| 
      
 476 
     | 
    
         
            +
                      null,
         
     | 
| 
      
 477 
     | 
    
         
            +
                      2
         
     | 
| 
      
 478 
     | 
    
         
            +
                    )
         
     | 
| 
       472 
479 
     | 
    
         
             
                  );
         
     | 
| 
       473 
480 
     | 
    
         
             
                  process.exit(0);
         
     | 
| 
       474 
481 
     | 
    
         
             
                }
         
     | 
    
        package/package.json
    CHANGED
    
    | 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "name": "@forklaunch/hyper-express",
         
     | 
| 
       3 
     | 
    
         
            -
              "version": "0.9. 
     | 
| 
      
 3 
     | 
    
         
            +
              "version": "0.9.28",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "description": "Forklaunch framework for hyper-express.",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
         
     | 
| 
       6 
6 
     | 
    
         
             
              "bugs": {
         
     | 
| 
         @@ -26,17 +26,17 @@ 
     | 
|
| 
       26 
26 
     | 
    
         
             
              ],
         
     | 
| 
       27 
27 
     | 
    
         
             
              "dependencies": {
         
     | 
| 
       28 
28 
     | 
    
         
             
                "@forklaunch/hyper-express-fork": "^6.17.35",
         
     | 
| 
       29 
     | 
    
         
            -
                "@scalar/express-api-reference": "^0.8. 
     | 
| 
      
 29 
     | 
    
         
            +
                "@scalar/express-api-reference": "^0.8.22",
         
     | 
| 
       30 
30 
     | 
    
         
             
                "cors": "^2.8.5",
         
     | 
| 
       31 
31 
     | 
    
         
             
                "live-directory": "^3.0.3",
         
     | 
| 
       32 
32 
     | 
    
         
             
                "openapi3-ts": "^4.5.0",
         
     | 
| 
       33 
33 
     | 
    
         
             
                "qs": "^6.14.0",
         
     | 
| 
       34 
     | 
    
         
            -
                "swagger-ui-dist": "^5.29. 
     | 
| 
      
 34 
     | 
    
         
            +
                "swagger-ui-dist": "^5.29.4",
         
     | 
| 
       35 
35 
     | 
    
         
             
                "swagger-ui-express": "^5.0.1",
         
     | 
| 
       36 
36 
     | 
    
         
             
                "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.52.0",
         
     | 
| 
       37 
     | 
    
         
            -
                "@forklaunch/ 
     | 
| 
       38 
     | 
    
         
            -
                "@forklaunch/ 
     | 
| 
       39 
     | 
    
         
            -
                "@forklaunch/ 
     | 
| 
      
 37 
     | 
    
         
            +
                "@forklaunch/common": "0.6.19",
         
     | 
| 
      
 38 
     | 
    
         
            +
                "@forklaunch/validator": "0.10.19",
         
     | 
| 
      
 39 
     | 
    
         
            +
                "@forklaunch/core": "0.15.9"
         
     | 
| 
       40 
40 
     | 
    
         
             
              },
         
     | 
| 
       41 
41 
     | 
    
         
             
              "devDependencies": {
         
     | 
| 
       42 
42 
     | 
    
         
             
                "@eslint/js": "^9.37.0",
         
     | 
| 
         @@ -46,17 +46,17 @@ 
     | 
|
| 
       46 
46 
     | 
    
         
             
                "@types/qs": "^6.14.0",
         
     | 
| 
       47 
47 
     | 
    
         
             
                "@types/swagger-ui-dist": "^3.30.6",
         
     | 
| 
       48 
48 
     | 
    
         
             
                "@types/swagger-ui-express": "^4.1.8",
         
     | 
| 
       49 
     | 
    
         
            -
                "@typescript/native-preview": "7.0.0-dev. 
     | 
| 
      
 49 
     | 
    
         
            +
                "@typescript/native-preview": "7.0.0-dev.20251016.1",
         
     | 
| 
       50 
50 
     | 
    
         
             
                "jest": "^30.2.0",
         
     | 
| 
       51 
51 
     | 
    
         
             
                "kill-port-process": "^3.2.1",
         
     | 
| 
       52 
52 
     | 
    
         
             
                "prettier": "^3.6.2",
         
     | 
| 
       53 
     | 
    
         
            -
                "ts-jest": "^29.4. 
     | 
| 
      
 53 
     | 
    
         
            +
                "ts-jest": "^29.4.5",
         
     | 
| 
       54 
54 
     | 
    
         
             
                "ts-node": "^10.9.2",
         
     | 
| 
       55 
55 
     | 
    
         
             
                "tsup": "^8.5.0",
         
     | 
| 
       56 
56 
     | 
    
         
             
                "tsx": "^4.20.6",
         
     | 
| 
       57 
     | 
    
         
            -
                "typedoc": "^0.28. 
     | 
| 
      
 57 
     | 
    
         
            +
                "typedoc": "^0.28.14",
         
     | 
| 
       58 
58 
     | 
    
         
             
                "typescript": "^5.9.3",
         
     | 
| 
       59 
     | 
    
         
            -
                "typescript-eslint": "^8.46. 
     | 
| 
      
 59 
     | 
    
         
            +
                "typescript-eslint": "^8.46.1"
         
     | 
| 
       60 
60 
     | 
    
         
             
              },
         
     | 
| 
       61 
61 
     | 
    
         
             
              "scripts": {
         
     | 
| 
       62 
62 
     | 
    
         
             
                "build": "tsgo --noEmit && tsup index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean",
         
     |