metaowl 0.2.7 → 0.2.9

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/index.js +1 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { mountApp } from './modules/app-mounter.js'
2
2
  import { buildRoutes } from './modules/file-router.js'
3
+ import { processRoutes } from './modules/router.js'
3
4
 
4
5
  export { default as Fetch } from './modules/fetch.js'
5
6
  export { default as Cache } from './modules/cache.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metaowl",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "description": "Lightweight meta-framework for Odoo OWL — file-based routing, app mounting, Fetch helper, Cache, Meta tags, SSG generator, and a Vite plugin.",
5
5
  "type": "module",
6
6
  "main": "index.js",