fix(core): update

This commit is contained in:
Philipp Kunz 2023-07-09 17:38:18 +02:00
parent f9afc486f3
commit 04686b810f
6 changed files with 1619 additions and 1316 deletions

View File

@ -29,14 +29,14 @@
"dependencies": { "dependencies": {
"@pushrocks/consolecolor": "^2.0.1", "@pushrocks/consolecolor": "^2.0.1",
"@pushrocks/smartlog-interfaces": "^3.0.0", "@pushrocks/smartlog-interfaces": "^3.0.0",
"@pushrocks/smartpromise": "^3.1.7" "@pushrocks/smartpromise": "^4.0.2"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.65", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.39", "@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.73", "@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4", "@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^18.11.6" "@types/node": "^20.4.1"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
import { tap, expect } from '@pushrocks/tapbundle'; import { tap, expect } from '@pushrocks/tapbundle';
import * as smartlogDesinationLocal from '../ts/index.js'; import * as smartlogDesinationLocal from '../ts/index.js';
import { ILogContext } from '@pushrocks/smartlog-interfaces'; import type { ILogContext } from '@pushrocks/smartlog-interfaces';
const testLogContext: ILogContext = { const testLogContext: ILogContext = {
company: 'Lossless GmbH', company: 'Lossless GmbH',

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smartlog-destination-local', name: '@pushrocks/smartlog-destination-local',
version: '9.0.0', version: '9.0.1',
description: 'a smartlog destination targeting the local console' description: 'a smartlog destination targeting the local console'
} }

View File

@ -1,8 +1,8 @@
import * as plugins from './sl.destlocal.plugins.js'; import * as plugins from './sl.destlocal.plugins.js';
import { ILogDestination, ILogPackage, TLogLevel } from '@pushrocks/smartlog-interfaces'; import type { ILogDestination, ILogPackage, TLogLevel } from '@pushrocks/smartlog-interfaces';
// other beautylog classes // other beautylog classes
import { TColorName } from '@pushrocks/consolecolor'; import { type TColorName } from '@pushrocks/consolecolor';
export class DestinationLocal implements ILogDestination { export class DestinationLocal implements ILogDestination {
/** /**

View File

@ -5,6 +5,7 @@
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "ES2022",
"moduleResolution": "nodenext", "moduleResolution": "nodenext",
"esModuleInterop": true "esModuleInterop": true,
"verbatimModuleSyntax": true,
} }
} }