runtime-reporter 0.4.6 → 0.4.7

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 +7 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Runtime Reporter
2
2
 
3
- Replace ad-hoc logging with structured, code-based messaging that is also type-safe, centralized, and production-ready.
3
+ Replace ad-hoc logging with structured, code-based messaging.
4
+
5
+ Runtime Reporter provides centralized, type-safe reporting that is convenient in development and secure in production.
4
6
 
5
7
  ```ts
6
8
  // ./src/runtime-reporter.ts
@@ -42,7 +44,10 @@ in a lightweight, self-contained package (less than 1 KB gzipped).
42
44
 
43
45
  ## Who is this for?
44
46
 
45
- Runtime Reporter is ideal for front-end frameworks and libraries. However, it is ultimately useful for any project looking for standardized console messaging.
47
+ - Front-end frameworks and libraries
48
+ - Projects that need stable error codes
49
+ - Teams replacing custom logging systems
50
+ - Projects that want safer production output
46
51
 
47
52
  ## Installation
48
53
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "runtime-reporter",
3
- "version": "0.4.6",
4
- "description": "Replace ad-hoc logging with structured, code-based messaging that is also type-safe, centralized, and production-ready",
3
+ "version": "0.4.7",
4
+ "description": "Replace ad-hoc logging with structured, code-based messaging",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.js",