@contember/engine-common
Advanced tools
Comparing version 1.3.0-alpha.13 to 1.3.0-beta.1
@@ -1,5 +0,5 @@ | ||
export declare type EventMap = { | ||
export type EventMap = { | ||
[name: string]: (arg: any) => any; | ||
}; | ||
export declare type EventUnlisten = () => void; | ||
export type EventUnlisten = () => void; | ||
export interface EventEmitter<E extends EventMap> { | ||
@@ -6,0 +6,0 @@ on<K extends keyof E>(event: K, cb: E[K]): EventUnlisten; |
import { Logger } from '@contember/logger'; | ||
export declare type RunnableArgs = { | ||
export type RunnableArgs = { | ||
onError: (e: any) => void; | ||
@@ -4,0 +4,0 @@ onClose?: () => void; |
import { Runnable, RunnableArgs, Running } from './Runnable'; | ||
export declare type SupervisorOptions = { | ||
export type SupervisorOptions = { | ||
max?: number; | ||
@@ -4,0 +4,0 @@ startupMax?: number; |
{ | ||
"name": "@contember/engine-common", | ||
"version": "1.3.0-alpha.13", | ||
"version": "1.3.0-beta.1", | ||
"license": "Apache-2.0", | ||
"main": "dist/src/index.js", | ||
"scripts": { | ||
"test": "vitest" | ||
"test": "vitest --dir ./tests/cases" | ||
}, | ||
@@ -18,4 +18,4 @@ "typings": "dist/src/index.d.ts", | ||
"dependencies": { | ||
"@contember/logger": "1.3.0-alpha.13" | ||
"@contember/logger": "1.3.0-beta.1" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
76002
+ Added@contember/logger@1.3.0-beta.1(transitive)
- Removed@contember/logger@1.3.0-alpha.13(transitive)