@decaf-ts/logging 0.3.26 → 0.3.27

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/README.md CHANGED
@@ -9,7 +9,6 @@ A small, flexible TypeScript logging library designed for framework-agnostic pro
9
9
  - Simple method decorators (log/debug/info/verbose/silly) to instrument class methods without boilerplate.
10
10
  - Extensibility through a pluggable LoggerFactory (e.g., WinstonLogger) while keeping a minimal default runtime.
11
11
 
12
-
13
12
  ![Licence](https://img.shields.io/github/license/decaf-ts/logging.svg?style=plastic)
14
13
  ![GitHub language count](https://img.shields.io/github/languages/count/decaf-ts/logging?style=plastic)
15
14
  ![GitHub top language](https://img.shields.io/github/languages/top/decaf-ts/logging?style=plastic)
@@ -39,6 +38,9 @@ A small, flexible TypeScript logging library designed for framework-agnostic pro
39
38
 
40
39
  Documentation available [here](https://decaf-ts.github.io/logging/)
41
40
 
41
+ Minimal size: ##PACKAGE_SIZE## kb gzipped
42
+
43
+
42
44
  # Logging Library — Detailed Description
43
45
 
44
46
  The logging package is a lightweight, extensible logging solution for TypeScript projects. It centers on two main constructs:
package/dist/logging.cjs CHANGED
@@ -2032,7 +2032,7 @@
2032
2032
  * @type {string}
2033
2033
  * @memberOf module:Logging
2034
2034
  */
2035
- const VERSION = "0.3.25";
2035
+ const VERSION = "0.3.26";
2036
2036
  /**
2037
2037
  * @description Current package version string.
2038
2038
  * @summary Stores the package version for diagnostics and compatibility checks.
@@ -2030,7 +2030,7 @@ function isClass(value) {
2030
2030
  * @type {string}
2031
2031
  * @memberOf module:Logging
2032
2032
  */
2033
- const VERSION = "0.3.25";
2033
+ const VERSION = "0.3.26";
2034
2034
  /**
2035
2035
  * @description Current package version string.
2036
2036
  * @summary Stores the package version for diagnostics and compatibility checks.
package/lib/esm/index.js CHANGED
@@ -21,7 +21,7 @@ export * from "./utils.js";
21
21
  * @type {string}
22
22
  * @memberOf module:Logging
23
23
  */
24
- export const VERSION = "0.3.25";
24
+ export const VERSION = "0.3.26";
25
25
  /**
26
26
  * @description Current package version string.
27
27
  * @summary Stores the package version for diagnostics and compatibility checks.
package/lib/index.cjs CHANGED
@@ -38,7 +38,7 @@ __exportStar(require("./utils.cjs"), exports);
38
38
  * @type {string}
39
39
  * @memberOf module:Logging
40
40
  */
41
- exports.VERSION = "0.3.25";
41
+ exports.VERSION = "0.3.26";
42
42
  /**
43
43
  * @description Current package version string.
44
44
  * @summary Stores the package version for diagnostics and compatibility checks.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/logging",
3
- "version": "0.3.26",
3
+ "version": "0.3.27",
4
4
  "description": "simple winston inspired wrapper for cross lib logging",
5
5
  "type": "module",
6
6
  "exports": {