@hamak/logging-impl 0.4.19 → 0.6.0

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 CHANGED
@@ -1,16 +1,7 @@
1
1
  /**
2
2
  * @hamak/logging-impl
3
3
  *
4
- * Core implementation of the pluggable logging system.
5
- * Provides LogManager, ContextLogger, transports, and formatters.
6
- *
7
- * @packageDocumentation
4
+ * @deprecated This package is deprecated. Please migrate to @hamak/logging
8
5
  */
9
- export * from './core/index.js';
10
- export * from './transports/index.js';
11
- export * from './formatters/index.js';
12
- export * from './plugin/index.js';
13
- export * from './utils/index.js';
14
- export type { ILogger, ILogTransport, ILogFormatter, ILogManager, LogLevel, LogEntry, LogContext, LogMetadata, TransportConfig, LogManagerConfig, ConsoleTransportConfig, RemoteTransportConfig, } from '@hamak/logging-api';
15
- export { LOG_MANAGER_TOKEN, LOGGER_TOKEN, LOG_CONFIG_TOKEN, } from '@hamak/logging-api';
6
+ export * from '@hamak/logging';
16
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,cAAc,iBAAiB,CAAC;AAGhC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,mBAAmB,CAAC;AAGlC,cAAc,kBAAkB,CAAC;AAGjC,YAAY,EACV,OAAO,EACP,aAAa,EACb,aAAa,EACb,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,WAAW,EACX,eAAe,EACf,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,GACtB,MAAM,oBAAoB,CAAC;AAE5B,OAAO,EACL,iBAAiB,EACjB,YAAY,EACZ,gBAAgB,GACjB,MAAM,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,cAAc,gBAAgB,CAAC"}
package/dist/index.js CHANGED
@@ -1,19 +1,7 @@
1
1
  /**
2
2
  * @hamak/logging-impl
3
3
  *
4
- * Core implementation of the pluggable logging system.
5
- * Provides LogManager, ContextLogger, transports, and formatters.
6
- *
7
- * @packageDocumentation
4
+ * @deprecated This package is deprecated. Please migrate to @hamak/logging
8
5
  */
9
- // Export core implementations
10
- export * from './core/index.js';
11
- // Export transports
12
- export * from './transports/index.js';
13
- // Export formatters
14
- export * from './formatters/index.js';
15
- // Export plugin factory
16
- export * from './plugin/index.js';
17
- // Export utilities
18
- export * from './utils/index.js';
19
- export { LOG_MANAGER_TOKEN, LOGGER_TOKEN, LOG_CONFIG_TOKEN, } from '@hamak/logging-api';
6
+ console.warn('[@hamak/logging-impl] This package is deprecated. Please migrate to @hamak/logging');
7
+ export * from '@hamak/logging';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hamak/logging-impl",
3
- "version": "0.4.19",
4
- "description": "Logging Implementation - Core implementation of the pluggable logging system",
3
+ "version": "0.6.0",
4
+ "description": "[DEPRECATED] Use @hamak/logging instead",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -9,12 +9,7 @@
9
9
  ".": {
10
10
  "types": "./dist/index.d.ts",
11
11
  "import": "./dist/index.js",
12
- "default": "./dist/index.js",
13
- "legacy": "./dist/es2015/index.js"
14
- },
15
- "./es2015": {
16
- "import": "./dist/es2015/index.js",
17
- "default": "./dist/es2015/index.js"
12
+ "default": "./dist/index.js"
18
13
  }
19
14
  },
20
15
  "files": [
@@ -29,26 +24,21 @@
29
24
  "access": "public"
30
25
  },
31
26
  "scripts": {
32
- "build": "tsc -p tsconfig.lib.json && tsc -p tsconfig.es2015.json",
27
+ "build": "tsc -p tsconfig.lib.json",
33
28
  "clean": "rm -rf dist"
34
29
  },
35
30
  "keywords": [
36
31
  "logging",
37
32
  "implementation",
38
- "microkernel"
33
+ "deprecated"
39
34
  ],
40
35
  "author": "",
41
36
  "license": "MIT",
42
37
  "dependencies": {
43
- "@hamak/logging-api": "*",
44
- "@hamak/logging-spi": "*",
45
- "@hamak/microkernel-api": "*",
46
- "@hamak/microkernel-spi": "*"
38
+ "@hamak/logging": "*"
47
39
  },
40
+ "deprecated": "Use @hamak/logging instead",
48
41
  "devDependencies": {
49
- "@testing-library/jest-dom": "^6.9.1",
50
- "typescript": "^5.9.3",
51
- "vitest": "^3.2.4",
52
- "jsdom": "^27.0.0"
42
+ "typescript": "^5.9.3"
53
43
  }
54
44
  }