coakka-logger-bun 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 +3 -0
- package/dist/packaging.d.ts +1 -1
- package/dist/packaging.js +1 -1
- package/package.json +17 -1
package/README.md
CHANGED
|
@@ -28,6 +28,9 @@ bash run.sh logger bun basic
|
|
|
28
28
|
No-checkout npm smoke:
|
|
29
29
|
https://github.com/phuong-tran/coakka-samples/blob/main/docs/first-npm-smoke.md
|
|
30
30
|
|
|
31
|
+
Samples docs directory:
|
|
32
|
+
https://github.com/phuong-tran/coakka-samples/tree/main/docs
|
|
33
|
+
|
|
31
34
|
It mirrors the Node.js logger lane while using Bun's native FFI surface instead
|
|
32
35
|
of a Node native dependency:
|
|
33
36
|
|
package/dist/packaging.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const LOGGER_BUN_VERSION = "1.2.
|
|
1
|
+
export declare const LOGGER_BUN_VERSION = "1.2.5";
|
|
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
package/package.json
CHANGED
|
@@ -1,8 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coakka-logger-bun",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
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/coakka-publish.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/phuong-tran/coakka-samples/tree/main/logger/bun",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/phuong-tran/coakka-samples/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"coakka",
|
|
16
|
+
"logger",
|
|
17
|
+
"native",
|
|
18
|
+
"bun",
|
|
19
|
+
"structured-logging",
|
|
20
|
+
"bounded-queue"
|
|
21
|
+
],
|
|
6
22
|
"type": "module",
|
|
7
23
|
"main": "./dist/index.js",
|
|
8
24
|
"types": "./dist/index.d.ts",
|