@kithinji/orca 1.0.32 → 1.0.33

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.
@@ -2188,6 +2188,7 @@ __export(node_exports, {
2188
2188
 
2189
2189
  // src/node/factory.ts
2190
2190
  var import_express2 = __toESM(require("express"));
2191
+ var import_cookie_parser = __toESM(require("cookie-parser"));
2191
2192
  var import_http = __toESM(require("http"));
2192
2193
  var import_uuid2 = require("uuid");
2193
2194
  var import_socket = require("socket.io");
@@ -2954,6 +2955,7 @@ var NodeFactory = class {
2954
2955
  static async create(rootModule) {
2955
2956
  const app = (0, import_express2.default)();
2956
2957
  app.use(import_express2.default.json());
2958
+ app.use((0, import_cookie_parser.default)());
2957
2959
  const server = import_http.default.createServer(app);
2958
2960
  const appNode = this.compileAndValidate(rootModule);
2959
2961
  const scanner = this.scanDependencies(appNode);