@momentumcms/plugins-core 0.1.8 → 0.1.10

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/CHANGELOG.md +15 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## 0.1.10 (2026-02-17)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **create-momentum-app:** add shell option to execFileSync for Windows ([#28](https://github.com/DonaldMurillo/momentum-cms/pull/28))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Claude Opus 4.6
10
+ - Donald Murillo @DonaldMurillo
11
+
12
+ ## 0.1.9 (2026-02-16)
13
+
14
+ This was a version bump only for plugins-core to align it with other projects, there were no code changes.
15
+
1
16
  ## 0.1.8 (2026-02-16)
2
17
 
3
18
  ### 🩹 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentumcms/plugins-core",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "Plugin system core and event bus for Momentum CMS",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",
@@ -25,8 +25,8 @@
25
25
  "main": "./index.cjs",
26
26
  "types": "./src/index.d.ts",
27
27
  "dependencies": {
28
- "@momentumcms/core": "0.1.8",
29
- "@momentumcms/logger": "0.1.8"
28
+ "@momentumcms/core": "0.1.10",
29
+ "@momentumcms/logger": "0.1.10"
30
30
  },
31
31
  "module": "./index.js"
32
32
  }