@sigx/lynx-observability 0.5.3 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,9 +1,13 @@
1
1
  # @sigx/lynx-observability
2
2
 
3
- Opt-in **production error capture** and **provider-agnostic log/error sinks** for sigx-lynx. Builds on the logger in [`@sigx/lynx-core`](https://github.com/signalxjs/lynx/tree/main/packages/lynx-core#logging): uncaught errors are funneled in as `error`-level records, and a "sink" is just a `LogTransport`. No hard dependency on any vendor SDK.
3
+ Opt-in **production error capture** and **provider-agnostic log/error sinks** for sigx-lynx. Builds on the logger in [`@sigx/lynx-core`](https://sigx.dev/lynx/modules/core/overview/): uncaught errors are funneled in as `error`-level records, and a "sink" is just a `LogTransport`. No hard dependency on any vendor SDK.
4
4
 
5
5
  > Logging itself ships in the framework (`import { createLogger } from '@sigx/lynx'`). This package adds the *production* pieces — catching crashes and shipping records off-device — and is installed only when you want them.
6
6
 
7
+ ## 📚 Documentation
8
+
9
+ Full guides, API reference and live examples → **[https://sigx.dev/lynx/](https://sigx.dev/lynx/)**
10
+
7
11
  ## Install
8
12
 
9
13
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sigx/lynx-observability",
3
- "version": "0.5.3",
3
+ "version": "0.5.5",
4
4
  "description": "Opt-in production error capture + provider-agnostic log/error sinks for sigx-lynx",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -33,13 +33,13 @@
33
33
  "url": "git+https://github.com/signalxjs/lynx.git",
34
34
  "directory": "packages/lynx-observability"
35
35
  },
36
- "homepage": "https://github.com/signalxjs/lynx/tree/main/packages/lynx-observability",
36
+ "homepage": "https://sigx.dev/lynx/",
37
37
  "bugs": {
38
38
  "url": "https://github.com/signalxjs/lynx/issues"
39
39
  },
40
40
  "dependencies": {
41
- "@sigx/lynx-http": "^0.5.3",
42
- "@sigx/lynx-core": "^0.5.3"
41
+ "@sigx/lynx-core": "^0.5.5",
42
+ "@sigx/lynx-http": "^0.5.5"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@typescript/native-preview": "7.0.0-dev.20260521.1",