Skip to content

Commit

Permalink
chore: bump to 4.1.4, see changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasticsoul committed Jan 12, 2024
1 parent 4231e4e commit 0d97690
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/helux-core/src/consts/user.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { VER as limuVer } from 'limu';

export const VER = '4.1.2';
export const VER = '4.1.3';

export const LIMU_VER = limuVer;

Expand Down
4 changes: 2 additions & 2 deletions packages/helux-core/src/types/api.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
|------------------------------------------------------------------------------------------------
| [email protected].2
| [email protected].3
| A state library core that integrates atom, signal, collection dep, derive and watch,
| it supports all react like frameworks ( including react 18 ).
|------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -68,7 +68,7 @@ import type {
} from './base';

export declare const cst: {
VER: '4.1.2';
VER: '4.1.3';
LIMU_VER: string;
EVENT_NAME: {
ON_DATA_CHANGED: 'ON_DATA_CHANGED';
Expand Down
2 changes: 1 addition & 1 deletion packages/helux-core/src/types/base.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type Dict<T = any> = Record<NumStrSymbol, T>;

export type DictOrCb<T = any> = Record<NumStrSymbol, T> | (() => Record<NumStrSymbol, T>);

export type PlainObject = Record<string, {}>;
export type PlainObject = Record<string, {} | undefined | null>;

export type DictN<T = any> = Record<number, T>;

Expand Down

0 comments on commit 0d97690

Please sign in to comment.