signalium 0.2.5 → 0.2.6

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # signalium
2
2
 
3
+ ## 0.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 1bc41a1: Add config functions to public API
8
+
3
9
  ## 0.2.5
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export type { Signal, AsyncSignal, WriteableSignal, SignalCompute, SignalAsyncCompute, SignalSubscribe, SignalEquals, SignalOptions, SignalOptionsWithInit, SignalSubscription, SignalWatcherEffect, AsyncPending, AsyncReady, AsyncResult, } from './signals.js';
2
2
  export { state, computed, asyncComputed, subscription, watcher } from './signals.js';
3
+ export { setRunBatch, setScheduleFlush } from './config.js';
package/dist/index.js CHANGED
@@ -1 +1,2 @@
1
1
  export { state, computed, asyncComputed, subscription, watcher } from './signals.js';
2
+ export { setRunBatch, setScheduleFlush } from './config.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signalium",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "type": "module",
5
5
  "repository": "https://github.com/pzuraq/signalium",
6
6
  "description": "Chain-reactivity at critical mass",
package/src/index.ts CHANGED
@@ -16,3 +16,4 @@ export type {
16
16
  } from './signals.js';
17
17
 
18
18
  export { state, computed, asyncComputed, subscription, watcher } from './signals.js';
19
+ export { setRunBatch, setScheduleFlush } from './config.js';