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)" "buildDocs": "(tsdoc)"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.66", "@git.zone/tsbuild": "^2.1.80",
"@git.zone/tsbundle": "^2.0.8", "@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.46", "@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.77", "@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.8", "@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.11.16" "@types/node": "^20.14.2"
}, },
"dependencies": { "dependencies": {
"@push.rocks/smartclickhouse": "^2.0.14", "@push.rocks/smartclickhouse": "^2.0.17",
"@push.rocks/smartlog-interfaces": "^3.0.0" "@push.rocks/smartlog-interfaces": "^3.0.2"
}, },
"browserslist": [ "browserslist": [
"last 1 chrome versions" "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'; import * as slclick from '../ts/index.js';
tap.test('first test', async () => { tap.test('first test', async () => {

View File

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

View File

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