Skip to content

Commit 69baaa2

Browse files
committed
Update and fixed typo
1 parent 811baaf commit 69baaa2

7 files changed

Lines changed: 373 additions & 398 deletions

File tree

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
]
99
],
1010
"plugins": [
11-
"@babel/plugin-proposal-class-properties",
11+
"@babel/plugin-transform-class-properties",
1212
"@babel/plugin-transform-object-assign",
1313
"@babel/plugin-transform-runtime"
1414
]

lib/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class Store<T> {
2020
state: T;
2121
setState(newStateOrCallback: Partial<T> | ((prev: T) => Partial<T>), cb?: any): void;
2222
unregisterStore(): void;
23-
listenerEmpty(): void;
23+
listenersEmpty(): void;
2424
}
2525

2626
export function Component(...args: any[]): any;

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import Component from './component.js';
2424
import { createActions, factoryActions } from './actions.js';
2525
import withVlow from './withVlow.js';
2626
var Vlow = {
27-
version: '1.1.27'
27+
version: '1.1.28'
2828
};
2929
Vlow.Store = Store;
3030
Vlow.Component = Component;

0 commit comments

Comments
 (0)