diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/index.ts | 12 | ||||
-rw-r--r-- | lib/server/index.ts | 10 | ||||
-rw-r--r-- | lib/trace/index.ts | 4 | ||||
-rw-r--r-- | lib/trace/log/pretty_json_console.ts | 2 | ||||
-rw-r--r-- | lib/trace/log/trace.ts | 2 | ||||
-rw-r--r-- | lib/trace/metric/emittable.ts | 2 | ||||
-rw-r--r-- | lib/trace/metric/metric.ts | 2 | ||||
-rw-r--r-- | lib/types/index.ts | 4 | ||||
-rw-r--r-- | lib/types/tagged.ts | 2 |
9 files changed, 20 insertions, 20 deletions
diff --git a/lib/index.ts b/lib/index.ts index afcb6d4..06c88d5 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -1,7 +1,7 @@ -import 'module-alias/register'; +import "module-alias/register.js" -export * from './leftpadesque'; -export * from './types'; -export * from './trace'; -export * from './process'; -export * from './server'; +export * from './leftpadesque/index'; +export * from './types/index'; +export * from './trace/index'; +export * from './process/index'; +export * from './server/index'; diff --git a/lib/server/index.ts b/lib/server/index.ts index 99e3839..a080745 100644 --- a/lib/server/index.ts +++ b/lib/server/index.ts @@ -1,11 +1,11 @@ import type { ITraceable, LogMetricTraceSupplier, Mapper } from '@emprespresso/pengueno'; export type ServerTrace = LogMetricTraceSupplier; -export * from './http'; -export * from './response'; -export * from './request'; -export * from './activity'; -export * from './filter'; +export * from './http/index'; +export * from './response/index'; +export * from './request/index'; +export * from './activity/index'; +export * from './filter/index'; import { PenguenoRequest, PenguenoResponse } from '@emprespresso/pengueno'; export interface Server { diff --git a/lib/trace/index.ts b/lib/trace/index.ts index 7a37cb6..474231e 100644 --- a/lib/trace/index.ts +++ b/lib/trace/index.ts @@ -1,5 +1,5 @@ export * from './itrace'; -export * from './metric'; -export * from './log'; +export * from './metric/index'; +export * from './log/index'; export * from './trace'; export * from './util'; diff --git a/lib/trace/log/pretty_json_console.ts b/lib/trace/log/pretty_json_console.ts index 02cc48c..3d287d8 100644 --- a/lib/trace/log/pretty_json_console.ts +++ b/lib/trace/log/pretty_json_console.ts @@ -1,4 +1,4 @@ -import { ANSI, LogLevel, ILogger } from '.'; +import { ANSI, LogLevel, ILogger } from './index'; export class PrettyJsonConsoleLogger implements ILogger { public log(level: LogLevel, ...trace: string[]) { diff --git a/lib/trace/log/trace.ts b/lib/trace/log/trace.ts index 3f71e06..0b2062c 100644 --- a/lib/trace/log/trace.ts +++ b/lib/trace/log/trace.ts @@ -1,5 +1,5 @@ import { isDebug, ITrace, ITraceWith, memoize, Supplier } from '@emprespresso/pengueno'; -import { ILogger, isLogLevel, LogLevel, logLevelOrder, PrettyJsonConsoleLogger } from '.'; +import { ILogger, isLogLevel, LogLevel, logLevelOrder, PrettyJsonConsoleLogger } from './index'; export type LogTraceSupplier = ITraceWith<Supplier<string>> | ITraceWith<Error>; diff --git a/lib/trace/metric/emittable.ts b/lib/trace/metric/emittable.ts index 232cd3a..8957426 100644 --- a/lib/trace/metric/emittable.ts +++ b/lib/trace/metric/emittable.ts @@ -1,4 +1,4 @@ -import { IEmittableMetric, MetricValue, MetricValueTag, Unit } from '.'; +import { IEmittableMetric, MetricValue, MetricValueTag, Unit } from './index'; export class EmittableMetric implements IEmittableMetric { constructor( diff --git a/lib/trace/metric/metric.ts b/lib/trace/metric/metric.ts index 03ae4fe..d4659eb 100644 --- a/lib/trace/metric/metric.ts +++ b/lib/trace/metric/metric.ts @@ -1,4 +1,4 @@ -import { EmittableMetric, IMetric, IMetricTag, IResultMetric, Unit } from '.'; +import { EmittableMetric, IMetric, IMetricTag, IResultMetric, Unit } from './index'; class _Tagged { protected constructor(public readonly _tag = IMetricTag) {} diff --git a/lib/types/index.ts b/lib/types/index.ts index 5c4e4d2..e6f27df 100644 --- a/lib/types/index.ts +++ b/lib/types/index.ts @@ -1,5 +1,5 @@ export * from './misc'; export * from './object'; export * from './tagged'; -export * from './fn'; -export * from './collections'; +export * from './fn/index'; +export * from './collections/index'; diff --git a/lib/types/tagged.ts b/lib/types/tagged.ts index 31607b0..fbd6c93 100644 --- a/lib/types/tagged.ts +++ b/lib/types/tagged.ts @@ -1,4 +1,4 @@ -import { isObject } from '.'; +import { isObject } from './index'; export interface Tagged<TTag> { _tag: TTag; |