coakka-logger-electron 1.2.3 → 1.2.5

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
@@ -27,6 +27,9 @@ bash run.sh logger electron basic
27
27
  No-checkout npm smoke:
28
28
  https://github.com/phuong-tran/coakka-samples/blob/main/docs/first-npm-smoke.md
29
29
 
30
+ Samples docs directory:
31
+ https://github.com/phuong-tran/coakka-samples/tree/main/docs
32
+
30
33
  The boundary is intentionally strict:
31
34
 
32
35
  - renderer JavaScript sends a log intent through `ipcRenderer.invoke`
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { type LoggerRecordSnapshot, type LoggerSpec, type LoggerStatsSnapshot } from "coakka-logger-node";
2
- export declare const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.3";
2
+ export declare const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.5";
3
3
  export declare const COAKKA_ELECTRON_LOGGER_INTENT_CHANNEL = "coakka:logger-intent";
4
4
  export type ElectronLoggerLevelName = "trace" | "debug" | "info" | "warn" | "error" | "fatal";
5
5
  export interface ElectronLoggerIntent {
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { CoakkaLoggerLevel, Logger, LoggerStatusError, } from "coakka-logger-node";
2
- export const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.3";
2
+ export const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.5";
3
3
  export const COAKKA_ELECTRON_LOGGER_INTENT_CHANNEL = "coakka:logger-intent";
4
4
  export class ElectronLoggerIntentBridge {
5
5
  logger;
package/package.json CHANGED
@@ -1,8 +1,24 @@
1
1
  {
2
2
  "name": "coakka-logger-electron",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "Electron main-process intent bridge for the CoAkka logger",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/phuong-tran/coakka-publish.git"
9
+ },
10
+ "homepage": "https://github.com/phuong-tran/coakka-samples/tree/main/logger/electron",
11
+ "bugs": {
12
+ "url": "https://github.com/phuong-tran/coakka-samples/issues"
13
+ },
14
+ "keywords": [
15
+ "coakka",
16
+ "logger",
17
+ "native",
18
+ "electron",
19
+ "structured-logging",
20
+ "ipc"
21
+ ],
6
22
  "type": "module",
7
23
  "main": "./dist/index.js",
8
24
  "types": "./dist/index.d.ts",
@@ -30,7 +46,7 @@
30
46
  "smoke:packaged": "bash scripts/smoke-packaged-package.sh"
31
47
  },
32
48
  "dependencies": {
33
- "coakka-logger-node": "1.2.3"
49
+ "coakka-logger-node": "1.2.5"
34
50
  },
35
51
  "devDependencies": {
36
52
  "@types/node": "^24.0.0",