@vorra/core 0.3.0 → 0.4.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/CHANGELOG.md +18 -14
  2. package/package.json +1 -7
package/CHANGELOG.md CHANGED
@@ -1,15 +1,19 @@
1
- ## 0.3.0 (2026-04-12)
2
-
3
- ### 🚀 Features
4
-
5
- - add @for directive for reactive list rendering ([#9](https://github.com/ubergeoff/forge/pull/9))
6
-
7
- ### ❤️ Thank You
8
-
9
- - Claude Sonnet 4.6
10
- - Geoffrey Le Roux
11
- - ubergeoff @ubergeoff
12
-
13
- ## 0.2.0 (2026-04-12)
14
-
1
+ ## 0.4.0 (2026-04-13)
2
+
3
+ This was a version bump only for core to align it with other projects, there were no code changes.
4
+
5
+ ## 0.3.0 (2026-04-12)
6
+
7
+ ### 🚀 Features
8
+
9
+ - add @for directive for reactive list rendering ([#9](https://github.com/ubergeoff/forge/pull/9))
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - Claude Sonnet 4.6
14
+ - Geoffrey Le Roux
15
+ - ubergeoff @ubergeoff
16
+
17
+ ## 0.2.0 (2026-04-12)
18
+
15
19
  This was a version bump only for core to align it with other projects, there were no code changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vorra/core",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Vorra core — reactivity primitives and dependency injection",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -25,28 +25,22 @@
25
25
  "CHANGELOG.md"
26
26
  ],
27
27
  "type": "module",
28
- "main": "./dist/index.cjs",
29
- "module": "./dist/index.js",
30
28
  "types": "./dist/index.d.ts",
31
29
  "exports": {
32
30
  ".": {
33
31
  "import": "./dist/index.js",
34
- "require": "./dist/index.cjs",
35
32
  "types": "./dist/index.d.ts"
36
33
  },
37
34
  "./reactivity": {
38
35
  "import": "./dist/reactivity.js",
39
- "require": "./dist/reactivity.cjs",
40
36
  "types": "./dist/reactivity.d.ts"
41
37
  },
42
38
  "./di": {
43
39
  "import": "./dist/di.js",
44
- "require": "./dist/di.cjs",
45
40
  "types": "./dist/di.d.ts"
46
41
  },
47
42
  "./dom": {
48
43
  "import": "./dist/dom.js",
49
- "require": "./dist/dom.cjs",
50
44
  "types": "./dist/dom.d.ts"
51
45
  }
52
46
  },