@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.
Files changed (44) hide show
  1. package/dist/index.d.ts +4 -4
  2. package/dist/index.js +7 -7
  3. package/dist/inspect.d.ts +28 -28
  4. package/dist/inspect.js +344 -345
  5. package/dist/inspect.js.map +1 -1
  6. package/dist/inspect.test.d.ts +1 -1
  7. package/dist/logger.d.ts +145 -145
  8. package/dist/logger.js +331 -331
  9. package/dist/logger.js.map +1 -1
  10. package/dist/logger.test.d.ts +1 -1
  11. package/dist/logger.test.js.map +1 -1
  12. package/dist/logging.module.d.ts +17 -17
  13. package/dist/logging.module.js +28 -28
  14. package/dist/logging.module.js.map +1 -1
  15. package/dist/test.d.ts +1 -1
  16. package/dist/trace.d.ts +60 -60
  17. package/dist/trace.js +214 -215
  18. package/dist/trace.js.map +1 -1
  19. package/dist/trace.test.d.ts +1 -1
  20. package/dist/trace.test.js.map +1 -1
  21. package/dist.esm/index.d.ts +4 -4
  22. package/dist.esm/index.js +4 -4
  23. package/dist.esm/inspect.d.ts +28 -28
  24. package/dist.esm/inspect.js +339 -339
  25. package/dist.esm/inspect.js.map +1 -1
  26. package/dist.esm/inspect.test.d.ts +1 -1
  27. package/dist.esm/logger.d.ts +145 -145
  28. package/dist.esm/logger.js +323 -323
  29. package/dist.esm/logger.js.map +1 -1
  30. package/dist.esm/logger.test.d.ts +1 -1
  31. package/dist.esm/logger.test.js.map +1 -1
  32. package/dist.esm/logging.module.d.ts +17 -17
  33. package/dist.esm/logging.module.js +25 -25
  34. package/dist.esm/logging.module.js.map +1 -1
  35. package/dist.esm/test.d.ts +1 -1
  36. package/dist.esm/trace.d.ts +60 -60
  37. package/dist.esm/trace.js +208 -208
  38. package/dist.esm/trace.js.map +1 -1
  39. package/dist.esm/trace.test.d.ts +1 -1
  40. package/dist.esm/trace.test.js.map +1 -1
  41. package/package.json +10 -10
  42. package/tsconfig.esm.tsbuildinfo +1 -0
  43. package/tsconfig.json +0 -2
  44. 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