@gravito/monolith 2.0.0 → 3.0.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @gravito/monolith
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @gravito/core@1.2.0
9
+ - @gravito/mass@3.0.0
10
+
3
11
  ## 2.0.0
4
12
 
5
13
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -410,8 +410,7 @@ var OrbitMonolith = class {
410
410
  }
411
411
  core.adapter.use("*", async (c, next) => {
412
412
  c.set("content", manager);
413
- await next();
414
- return void 0;
413
+ return await next();
415
414
  });
416
415
  core.logger.info("Orbit Monolith installed \u2B1B\uFE0F");
417
416
  }
package/dist/index.js CHANGED
@@ -368,8 +368,7 @@ var OrbitMonolith = class {
368
368
  }
369
369
  core.adapter.use("*", async (c, next) => {
370
370
  c.set("content", manager);
371
- await next();
372
- return void 0;
371
+ return await next();
373
372
  });
374
373
  core.logger.info("Orbit Monolith installed \u2B1B\uFE0F");
375
374
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravito/monolith",
3
- "version": "2.0.0",
3
+ "version": "3.0.0",
4
4
  "description": "Enterprise monolith framework for Gravito Galaxy",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
package/src/index.ts CHANGED
@@ -32,8 +32,7 @@ export class OrbitMonolith implements GravitoOrbit {
32
32
  // Inject into request context
33
33
  core.adapter.use('*', async (c, next) => {
34
34
  c.set('content', manager)
35
- await next()
36
- return undefined
35
+ return await next()
37
36
  })
38
37
 
39
38
  core.logger.info('Orbit Monolith installed ⬛️')