metaowl 0.3.5 → 0.3.7
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/README.md +19 -3
- package/bin/metaowl-lint.js +2 -2
- package/eslint.js +5 -2
- package/modules/auto-import.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,10 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/metaowl)
|
|
6
6
|
[](LICENSE)
|
|
7
|
-
[](https://nodejs.org)
|
|
8
8
|
[](https://github.com/dennisschott/metaowl/issues)
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
> ⚠️ **Work in progress:** metaowl is not production-ready yet. APIs may change without notice, and features may still break between releases.
|
|
11
|
+
|
|
12
|
+
metaowl is a complete solution for building OWL applications with everything you need out of the box:
|
|
11
13
|
|
|
12
14
|
**Core Infrastructure:** File-based routing with dynamic routes, layout system, navigation guards, Pinia-inspired state management, and zero-config app mounting.
|
|
13
15
|
|
|
@@ -99,7 +101,7 @@ All powered by a batteries-included Vite plugin that handles the build pipeline,
|
|
|
99
101
|
|
|
100
102
|
| Dependency | Version |
|
|
101
103
|
|---|---|
|
|
102
|
-
| Node.js | `>=
|
|
104
|
+
| Node.js | `>=20` |
|
|
103
105
|
| `@odoo/owl` | bundled |
|
|
104
106
|
|
|
105
107
|
---
|
|
@@ -1464,6 +1466,20 @@ npx serve -s dist
|
|
|
1464
1466
|
|
|
1465
1467
|
---
|
|
1466
1468
|
|
|
1469
|
+
## Changelog
|
|
1470
|
+
|
|
1471
|
+
### v0.3.7 (2026-03-24)
|
|
1472
|
+
|
|
1473
|
+
**Fixed:**
|
|
1474
|
+
|
|
1475
|
+
- **bin/metaowl-lint.js**: Fixed inconsistent default lint paths. Changed from `src/owl/pages/**` and `src/owl/components/**` to `src/pages/**` and `src/components/**` to match the documented project structure.
|
|
1476
|
+
|
|
1477
|
+
- **eslint.js**: Fixed `ignores` configuration placement. Moved `ignores` to a separate configuration object as required by ESLint Flat Config format. Also added `.metaowl/**` to the ignore list for the auto-generated component declarations.
|
|
1478
|
+
|
|
1479
|
+
- **modules/auto-import.js**: Fixed missing `node:` prefix for Node.js built-in module import.
|
|
1480
|
+
|
|
1481
|
+
---
|
|
1482
|
+
|
|
1467
1483
|
## Contributing
|
|
1468
1484
|
|
|
1469
1485
|
Contributions are welcome! Please open an issue before submitting a pull request so we can discuss the change.
|
package/bin/metaowl-lint.js
CHANGED
package/eslint.js
CHANGED
|
@@ -39,11 +39,14 @@ export const eslintConfig = [
|
|
|
39
39
|
'quotes': ['error', 'single'],
|
|
40
40
|
'comma-dangle': ['error', 'never'],
|
|
41
41
|
'no-undef': 'off'
|
|
42
|
-
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
43
45
|
ignores: [
|
|
44
46
|
'node_modules/**',
|
|
45
47
|
'dist/**',
|
|
46
|
-
'build/**'
|
|
48
|
+
'build/**',
|
|
49
|
+
'.metaowl/**'
|
|
47
50
|
]
|
|
48
51
|
}
|
|
49
52
|
]
|
package/modules/auto-import.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "metaowl",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
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",
|