@zenithbuild/core 1.3.11 → 1.3.14

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/core/index.ts +17 -17
  2. package/package.json +6 -5
package/core/index.ts CHANGED
@@ -55,14 +55,14 @@
55
55
 
56
56
  // Explicit zen* exports (internal naming)
57
57
  export {
58
- zenSignal,
59
- zenState,
60
- zenEffect,
61
- zenMemo,
62
- zenRef,
63
- zenBatch,
64
- zenUntrack
65
- } from './reactivity'
58
+ signal as zenSignal,
59
+ state as zenState,
60
+ effect as zenEffect,
61
+ memo as zenMemo,
62
+ ref as zenRef,
63
+ batch as zenBatch,
64
+ untrack as zenUntrack
65
+ } from '@zenithbuild/runtime'
66
66
 
67
67
  // Types
68
68
  export type {
@@ -73,7 +73,7 @@ export type {
73
73
  DisposeFn,
74
74
  Subscriber,
75
75
  TrackingContext
76
- } from './reactivity'
76
+ } from '@zenithbuild/runtime'
77
77
 
78
78
  // Clean name exports (public DX)
79
79
  export {
@@ -84,7 +84,7 @@ export {
84
84
  ref,
85
85
  batch,
86
86
  untrack
87
- } from './reactivity'
87
+ } from '@zenithbuild/runtime'
88
88
 
89
89
  // Internal tracking utilities (advanced use)
90
90
  export {
@@ -98,7 +98,7 @@ export {
98
98
  startBatch,
99
99
  endBatch,
100
100
  isBatching
101
- } from './reactivity'
101
+ } from '@zenithbuild/runtime'
102
102
 
103
103
  // ============================================
104
104
  // Lifecycle Hooks
@@ -106,21 +106,21 @@ export {
106
106
 
107
107
  // Explicit zen* exports (internal naming)
108
108
  export {
109
- zenOnMount,
110
- zenOnUnmount
111
- } from './lifecycle'
109
+ onMount as zenOnMount,
110
+ onUnmount as zenOnUnmount
111
+ } from '@zenithbuild/runtime'
112
112
 
113
113
  // Clean name exports (public DX)
114
114
  export {
115
115
  onMount,
116
116
  onUnmount
117
- } from './lifecycle'
117
+ } from '@zenithbuild/runtime'
118
118
 
119
119
  // Types
120
120
  export type {
121
121
  MountCallback,
122
122
  UnmountCallback
123
- } from './lifecycle'
123
+ } from '@zenithbuild/runtime'
124
124
 
125
125
  // Internal lifecycle utilities (for component system)
126
126
  export {
@@ -131,7 +131,7 @@ export {
131
131
  getUnmountCallbackCount,
132
132
  resetMountState,
133
133
  resetUnmountState
134
- } from './lifecycle'
134
+ } from '@zenithbuild/runtime'
135
135
 
136
136
  // ============================================
137
137
  // Build-time Modules (Proxied from @zenithbuild/compiler)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenithbuild/core",
3
- "version": "1.3.11",
3
+ "version": "1.3.14",
4
4
  "description": "Core library for the Zenith framework",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -59,10 +59,11 @@
59
59
  "peerDependencies": {
60
60
  "typescript": "^5.9.3"
61
61
  },
62
+ "picocolors": "^1.1.1",
62
63
  "dependencies": {
63
- "@zenithbuild/bundler": "workspace:*",
64
- "@zenithbuild/compiler": "workspace:*",
65
- "@zenithbuild/router": "1.3.0",
66
- "picocolors": "^1.1.1"
64
+ "@zenithbuild/bundler": "^1.3.15",
65
+ "@zenithbuild/compiler": "^1.3.15",
66
+ "@zenithbuild/runtime": "^0.1.8",
67
+ "@zenithbuild/router": "^1.3.8"
67
68
  }
68
69
  }