fix(core): update

This commit is contained in:
Philipp Kunz 2023-06-24 23:57:34 +02:00
parent ed3b19abc5
commit 902fab4cc0
5 changed files with 1750 additions and 1398 deletions

View File

@ -23,27 +23,25 @@
"homepage": "https://gitlab.com/pushrocks/smartdata#README",
"dependencies": {
"@pushrocks/lik": "^6.0.2",
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartdelay": "^3.0.1",
"@pushrocks/smartlog": "^3.0.1",
"@pushrocks/smartmongo": "^2.0.7",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrx": "^3.0.0",
"@pushrocks/smartpromise": "^4.0.2",
"@pushrocks/smartrx": "^3.0.2",
"@pushrocks/smartstring": "^4.0.2",
"@pushrocks/smarttime": "^4.0.1",
"@pushrocks/smartunique": "^3.0.3",
"@pushrocks/taskbuffer": "^3.0.10",
"@tsclass/tsclass": "^4.0.34",
"@types/lodash": "^4.14.191",
"lodash": "^4.17.21",
"mongodb": "^5.1.0"
"@tsclass/tsclass": "^4.0.42",
"mongodb": "^5.6.0"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.15.5",
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.3.1",
"@types/shortid": "0.0.29"
},
"files": [

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartdata',
version: '5.0.12',
version: '5.0.13',
description: 'do more with data'
}

View File

@ -4,7 +4,7 @@ import { ObjectMap } from '@pushrocks/lik';
import { SmartdataDb } from './smartdata.classes.db.js';
import { SmartdataDbCursor } from './smartdata.classes.cursor.js';
import { IManager, SmartdataCollection } from './smartdata.classes.collection.js';
import { type IManager, SmartdataCollection } from './smartdata.classes.collection.js';
import { SmartdataDbWatcher } from './smartdata.classes.watcher.js';
export type TDocCreation = 'db' | 'new' | 'mixed';

View File

@ -14,7 +14,6 @@ import * as smartstring from '@pushrocks/smartstring';
import * as smarttime from '@pushrocks/smarttime';
import * as smartunique from '@pushrocks/smartunique';
import * as taskbuffer from '@pushrocks/taskbuffer';
import * as lodash from 'lodash';
import * as mongodb from 'mongodb';
export {
@ -22,7 +21,6 @@ export {
smartdelay,
smartpromise,
smartlog,
lodash,
smartq,
smartrx,
mongodb,