fix(core): update

This commit is contained in:
Philipp Kunz 2024-06-14 17:14:55 +02:00
parent ea77049468
commit e6a5edeb25
6 changed files with 6193 additions and 3649 deletions

1274
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,16 +14,16 @@
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbuild": "^2.1.80",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.11.16"
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.14.2"
},
"dependencies": {
"@push.rocks/smartclickhouse": "^2.0.14",
"@push.rocks/smartlog-interfaces": "^3.0.0"
"@push.rocks/smartclickhouse": "^2.0.17",
"@push.rocks/smartlog-interfaces": "^3.0.2"
},
"browserslist": [
"last 1 chrome versions"

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import * as slclick from '../ts/index.js';
tap.test('first test', async () => {

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartlog-destination-clickhouse',
version: '1.0.11',
description: 'a smartlog destination pushing logs to clickhouse'
name: '@push.rocks/smartlog-destination-clickhouse',
version: '1.0.12',
description: 'A library to integrate Smartlog logging with ClickHouse database for efficient log storage and querying.'
}

View File

@ -1,5 +1,5 @@
// pushrocks scope
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
import * as smartclickhouse from '@pushrocks/smartclickhouse';
import * as smartlogInterfaces from '@push.rocks/smartlog-interfaces';
import * as smartclickhouse from '@push.rocks/smartclickhouse';
export { smartlogInterfaces, smartclickhouse };