build: bump new versions
Publish to NPM / Check version changes and publish (push) Failing after 10m34s

This commit is contained in:
2026-06-18 02:57:03 +07:00
parent e73e8d2cdd
commit ab6d8f6ce0
198 changed files with 226 additions and 223 deletions
@@ -27,7 +27,7 @@ export type ComputedEagerReturn<T>
* // Defer recomputation until after the component update flush
* const total = computedEager(() => a.value + b.value, { flush: 'post' });
*
* @since 0.0.15
* @since 0.0.14
*/
export function computedEager<T>(getter: () => T, options: ComputedEagerOptions = {}): ComputedEagerReturn<T> {
const result = shallowRef<T>();
@@ -47,6 +47,6 @@ export function computedEager<T>(getter: () => T, options: ComputedEagerOptions
* @category Reactivity
* @description Alias for {@link computedEager}.
*
* @since 0.0.15
* @since 0.0.14
*/
export const eagerComputed = computedEager;