coakka-logger-bun 1.2.2 → 1.2.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/README.md CHANGED
@@ -25,6 +25,9 @@ cd coakka-samples
25
25
  bash run.sh logger bun basic
26
26
  ```
27
27
 
28
+ No-checkout npm smoke:
29
+ https://github.com/phuong-tran/coakka-samples/blob/main/docs/first-npm-smoke.md
30
+
28
31
  It mirrors the Node.js logger lane while using Bun's native FFI surface instead
29
32
  of a Node native dependency:
30
33
 
@@ -1,4 +1,4 @@
1
- export declare const LOGGER_BUN_VERSION = "1.2.2";
1
+ export declare const LOGGER_BUN_VERSION = "1.2.4";
2
2
  export declare const LOGGER_NATIVE_CORE_VERSION = "1.2.1";
3
3
  export declare const LOGGER_NATIVE_GIT_COMMIT = "f50756ebff0d";
4
4
  export declare const LOGGER_NATIVE_PACKAGE_VERSION = "1.2.1+f50756ebff0d";
package/dist/packaging.js CHANGED
@@ -1,4 +1,4 @@
1
- export const LOGGER_BUN_VERSION = "1.2.2";
1
+ export const LOGGER_BUN_VERSION = "1.2.4";
2
2
  export const LOGGER_NATIVE_CORE_VERSION = "1.2.1";
3
3
  export const LOGGER_NATIVE_GIT_COMMIT = "f50756ebff0d";
4
4
  export const LOGGER_NATIVE_PACKAGE_VERSION = "1.2.1+f50756ebff0d";
package/package.json CHANGED
@@ -1,8 +1,25 @@
1
1
  {
2
2
  "name": "coakka-logger-bun",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "Bun connector package for the CoAkka native logger core",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/phuong-tran/coakkaJVMConnector.git",
9
+ "directory": "logger/bun"
10
+ },
11
+ "homepage": "https://github.com/phuong-tran/coakka-samples/tree/main/logger/bun",
12
+ "bugs": {
13
+ "url": "https://github.com/phuong-tran/coakkaJVMConnector/issues"
14
+ },
15
+ "keywords": [
16
+ "coakka",
17
+ "logger",
18
+ "native",
19
+ "bun",
20
+ "structured-logging",
21
+ "bounded-queue"
22
+ ],
6
23
  "type": "module",
7
24
  "main": "./dist/index.js",
8
25
  "types": "./dist/index.d.ts",