fix(core): update

This commit is contained in:
2023-07-27 15:20:24 +02:00
parent a21131eaf6
commit abee699af8
12 changed files with 1384 additions and 859 deletions

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartstate',
version: '2.0.6',
name: '@push.rocks/smartstate',
version: '2.0.7',
description: 'a package that handles state in a good way'
}

View File

@ -1,5 +1,5 @@
import * as plugins from './smartstate.plugins.js';
import { StateAction, IActionDef } from './smartstate.classes.stateaction.js';
import { StateAction, type IActionDef } from './smartstate.classes.stateaction.js';
export class StatePart<TStatePartName, TStatePayload> {
public name: TStatePartName;

View File

@ -1,6 +1,6 @@
import * as isohash from '@pushrocks/isohash';
import * as smartjson from '@pushrocks/smartjson';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrx from '@pushrocks/smartrx';
import * as isohash from '@push.rocks/isohash';
import * as smartjson from '@push.rocks/smartjson';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
export { isohash, smartjson, smartpromise, smartrx };