@meadown/logger 1.8.3 → 1.8.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.
Files changed (2) hide show
  1. package/README.md +12 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,15 +9,18 @@ No dependencies. No config. Import it and you're done.
9
9
 
10
10
  ## Why this exists
11
11
 
12
- I kept writing the same custom log wrapper in every project the one that
13
- silences itself in production and shows a timestamp. I kept forgetting to use
14
- it, shipping stray `console.log` calls, and having no idea which file a log
15
- message came from. So I built the version I always wanted: zero dependencies,
16
- automatic production silence, and every line tells you exactly where it came
17
- from as a clickable link.
18
-
19
- > Full story problem, research, design, build, and what got cut along the
20
- > way in [`docs/STORY.md`](docs/STORY.md).
12
+ I kept writing the same `console.log` wrapper in every project. Every time.
13
+ Copy, paste, rename. And I still shipped it to production by accident. And I
14
+ still spent ten minutes staring at logs trying to figure out which file they
15
+ came from.
16
+
17
+ At some point I just built the thing I always wanted.
18
+
19
+ One import. No config. No dependencies. It shows you exactly where every log
20
+ came from, and it gets out of the way when you ship.
21
+
22
+ > The full story — the problem, the research, every design decision, and
23
+ > everything that got cut — is in [`docs/STORY.md`](docs/STORY.md).
21
24
 
22
25
  ## Features
23
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meadown/logger",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "A development-focused logger for Node.js and TypeScript — zero dependencies, clickable source links, and API response logging built in.",
5
5
  "keywords": [
6
6
  "logger",