@alterior/logging 3.13.3 → 3.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -4
- package/dist/index.js +7 -7
- package/dist/inspect.d.ts +28 -28
- package/dist/inspect.js +344 -345
- package/dist/inspect.js.map +1 -1
- package/dist/inspect.test.d.ts +1 -1
- package/dist/logger.d.ts +145 -145
- package/dist/logger.js +331 -331
- package/dist/logger.js.map +1 -1
- package/dist/logger.test.d.ts +1 -1
- package/dist/logger.test.js.map +1 -1
- package/dist/logging.module.d.ts +17 -17
- package/dist/logging.module.js +28 -28
- package/dist/logging.module.js.map +1 -1
- package/dist/test.d.ts +1 -1
- package/dist/trace.d.ts +60 -60
- package/dist/trace.js +214 -215
- package/dist/trace.js.map +1 -1
- package/dist/trace.test.d.ts +1 -1
- package/dist/trace.test.js.map +1 -1
- package/dist.esm/index.d.ts +4 -4
- package/dist.esm/index.js +4 -4
- package/dist.esm/inspect.d.ts +28 -28
- package/dist.esm/inspect.js +339 -339
- package/dist.esm/inspect.js.map +1 -1
- package/dist.esm/inspect.test.d.ts +1 -1
- package/dist.esm/logger.d.ts +145 -145
- package/dist.esm/logger.js +323 -323
- package/dist.esm/logger.js.map +1 -1
- package/dist.esm/logger.test.d.ts +1 -1
- package/dist.esm/logger.test.js.map +1 -1
- package/dist.esm/logging.module.d.ts +17 -17
- package/dist.esm/logging.module.js +25 -25
- package/dist.esm/logging.module.js.map +1 -1
- package/dist.esm/test.d.ts +1 -1
- package/dist.esm/trace.d.ts +60 -60
- package/dist.esm/trace.js +208 -208
- package/dist.esm/trace.js.map +1 -1
- package/dist.esm/trace.test.d.ts +1 -1
- package/dist.esm/trace.test.js.map +1 -1
- package/package.json +10 -10
- package/tsconfig.esm.tsbuildinfo +1 -0
- package/tsconfig.json +0 -2
- package/tsconfig.tsbuildinfo +1 -5735
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './inspect';
|
|
2
|
-
export * from './logger';
|
|
3
|
-
export * from './trace';
|
|
4
|
-
export * from './logging.module';
|
|
1
|
+
export * from './inspect';
|
|
2
|
+
export * from './logger';
|
|
3
|
+
export * from './trace';
|
|
4
|
+
export * from './logging.module';
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./inspect"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./logger"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./trace"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./logging.module"), exports);
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./inspect"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./logger"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./trace"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./logging.module"), exports);
|
|
8
8
|
//# sourceMappingURL=index.js.map
|
package/dist/inspect.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Module exports.
|
|
3
|
-
*/
|
|
4
|
-
export interface InspectOptions {
|
|
5
|
-
stylize: (str: any, styleType: any) => any;
|
|
6
|
-
depth?: number;
|
|
7
|
-
colors?: boolean;
|
|
8
|
-
showHidden?: boolean;
|
|
9
|
-
customInspect?: boolean;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Echos the value of a value. Trys to print the value out
|
|
13
|
-
* in the best way possible given the different types.
|
|
14
|
-
*
|
|
15
|
-
* @param {Object} obj The object to print out.
|
|
16
|
-
* @param {Object} opts Optional options object that alters the output.
|
|
17
|
-
* @license MIT (© Joyent)
|
|
18
|
-
*/
|
|
19
|
-
export declare function inspect(obj: any, opts?: InspectOptions): string;
|
|
20
|
-
/**
|
|
21
|
-
* Pass the string through with no stylization.
|
|
22
|
-
*/
|
|
23
|
-
export declare function stylizeNothing(str: any, styleType: any): any;
|
|
24
|
-
/**
|
|
25
|
-
* Use console colors to style the string. Suitable for output to
|
|
26
|
-
* terminals with ANSI color support.
|
|
27
|
-
*/
|
|
28
|
-
export declare function stylizeWithConsoleColors(str: any, styleType: any): any;
|
|
1
|
+
/**
|
|
2
|
+
* Module exports.
|
|
3
|
+
*/
|
|
4
|
+
export interface InspectOptions {
|
|
5
|
+
stylize: (str: any, styleType: any) => any;
|
|
6
|
+
depth?: number;
|
|
7
|
+
colors?: boolean;
|
|
8
|
+
showHidden?: boolean;
|
|
9
|
+
customInspect?: boolean;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Echos the value of a value. Trys to print the value out
|
|
13
|
+
* in the best way possible given the different types.
|
|
14
|
+
*
|
|
15
|
+
* @param {Object} obj The object to print out.
|
|
16
|
+
* @param {Object} opts Optional options object that alters the output.
|
|
17
|
+
* @license MIT (© Joyent)
|
|
18
|
+
*/
|
|
19
|
+
export declare function inspect(obj: any, opts?: InspectOptions): string;
|
|
20
|
+
/**
|
|
21
|
+
* Pass the string through with no stylization.
|
|
22
|
+
*/
|
|
23
|
+
export declare function stylizeNothing(str: any, styleType: any): any;
|
|
24
|
+
/**
|
|
25
|
+
* Use console colors to style the string. Suitable for output to
|
|
26
|
+
* terminals with ANSI color support.
|
|
27
|
+
*/
|
|
28
|
+
export declare function stylizeWithConsoleColors(str: any, styleType: any): any;
|
|
29
29
|
//# sourceMappingURL=inspect.d.ts.map
|