fix(core): update
This commit is contained in:
parent
f9afc486f3
commit
04686b810f
12
package.json
12
package.json
@ -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/**/*",
|
||||||
|
2912
pnpm-lock.yaml
generated
2912
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -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',
|
||||||
|
@ -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'
|
||||||
}
|
}
|
||||||
|
@ -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 {
|
||||||
/**
|
/**
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"module": "ES2022",
|
"module": "ES2022",
|
||||||
"moduleResolution": "nodenext",
|
"moduleResolution": "nodenext",
|
||||||
"esModuleInterop": true
|
"esModuleInterop": true,
|
||||||
|
"verbatimModuleSyntax": true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user