vibe-gx 3.1.0 → 3.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vibe.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-gx",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "description": "A lightweight, high-performance Node.js web framework.",
5
5
  "type": "module",
6
6
  "main": "vibe.js",
package/vibe.js CHANGED
@@ -492,6 +492,8 @@ const vibe = () => {
492
492
  media: { public: true, dest: null },
493
493
  };
494
494
  trie.insert("GET", routePath, route);
495
+ routes.push(route);
496
+ options.routeCount++;
495
497
  }
496
498
 
497
499
  /**