@promise-inc/devlog 0.1.1 → 0.1.3

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 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
- <img src="https://raw.githubusercontent.com/promise-inc/devlog/main/assets/logo.svg" alt="devlog" height="36" />
2
-
3
- Simple logger with automatic context (file + line). Zero dependencies.
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/promise-inc/devlog/main/assets/logo.svg" alt="devlog" height="36" />
3
+ <br><br>
4
+ Simple logger with automatic context (file + line). Zero dependencies.
5
+ </p>
4
6
 
5
7
  <p align="center">
6
8
  <img src="https://raw.githubusercontent.com/promise-inc/devlog/main/assets/output.svg" alt="devlog output" width="680" />
@@ -50,6 +52,13 @@ logger.info("Custom logger");
50
52
  - **Node.js** — Colored output with ANSI escape codes
51
53
  - **Browser** — `console.groupCollapsed` with `%c` styling. Data nested inside collapsible groups
52
54
 
55
+ ## Other packages by Promise Inc.
56
+
57
+ | Package | Description |
58
+ |---------|-------------|
59
+ | [`@promise-inc/ui-states`](https://www.npmjs.com/package/@promise-inc/ui-states) | Auto-generated skeleton loading states from real DOM — zero config React component |
60
+ | [`@promise-inc/ai-guard`](https://www.npmjs.com/package/@promise-inc/ai-guard) | Detect AI-generated code patterns before commit/push. Not a linter — a guard |
61
+
53
62
  ---
54
63
 
55
64
  Developed by [Promise Inc.](https://promise.codes)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promise-inc/devlog",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "Simple logger with automatic context (file + line)",
6
6
  "main": "./dist/index.js",