@momentumcms/core 0.1.9 → 0.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.
- package/CHANGELOG.md +22 -0
- package/generators/generator.cjs +822 -0
- package/generators/generator.js +791 -0
- package/index.cjs +17 -1
- package/index.js +16 -1
- package/package.json +2 -2
- package/src/generators/field-to-typescript.d.ts +44 -0
- package/src/generators/generator.d.ts +186 -0
- package/src/lib/config.d.ts +34 -1
- package/src/lib/fields/field.types.d.ts +6 -0
- package/src/lib/plugins.d.ts +23 -0
- package/generators/types/generator.cjs +0 -292
- package/generators/types/generator.js +0 -271
- package/src/generators/types/generator.d.ts +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## 0.2.0 (2026-02-17)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add named tabs support with nested data grouping and tab UI improvements ([63ab63e](https://github.com/DonaldMurillo/momentum-cms/commit/63ab63e))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Claude Opus 4.6
|
|
10
|
+
- Donald Murillo @DonaldMurillo
|
|
11
|
+
|
|
12
|
+
## 0.1.10 (2026-02-17)
|
|
13
|
+
|
|
14
|
+
### 🩹 Fixes
|
|
15
|
+
|
|
16
|
+
- **create-momentum-app:** add shell option to execFileSync for Windows ([#28](https://github.com/DonaldMurillo/momentum-cms/pull/28))
|
|
17
|
+
|
|
18
|
+
### ❤️ Thank You
|
|
19
|
+
|
|
20
|
+
- Claude Opus 4.6
|
|
21
|
+
- Donald Murillo @DonaldMurillo
|
|
22
|
+
|
|
1
23
|
## 0.1.9 (2026-02-16)
|
|
2
24
|
|
|
3
25
|
This was a version bump only for core to align it with other projects, there were no code changes.
|