Skip to content

Commit 99fd6f6

Browse files
committed
CHANGE: repo and package name
1 parent ff489c2 commit 99fd6f6

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# pretty-log
1+
# pretty-log-tagged
22

33
Make console logs readable with clean, structured, tag-based output.
44

55
## Installation
66

77
```bash
8-
npm install pretty-log
8+
npm install pretty-log-tagged
99
```
1010

1111
## Usage
1212

1313
```ts
14-
import { clog } from 'pretty-log';
14+
import { clog } from 'pretty-log-tagged';
1515

1616
clog.user({ id: 1, name: 'Jay' });
1717
clog.error('Something went wrong');
@@ -48,7 +48,7 @@ The dot notation is the tag. Any property you access becomes the label of that l
4848
## Custom Logger
4949

5050
```ts
51-
import { createLogger } from 'pretty-log';
51+
import { createLogger } from 'pretty-log-tagged';
5252

5353
const log = createLogger({
5454
timestamp: true, // show ISO timestamp, default: true

docs/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Contributions are welcome. Please read this guide before submitting a pull reque
55
## Getting Started
66

77
```bash
8-
git clone https://github.com/jayemscript/pretty-log.git
9-
cd pretty-log
8+
git clone https://github.com/jayemscript/pretty-log-tagged.git
9+
cd pretty-log-tagged
1010
npm install
1111
```
1212

docs/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Supported Versions
44

5-
Only the latest version of pretty-log receives security updates.
5+
Only the latest version of pretty-log-tagged receives security updates.
66

77
| Version | Supported |
88
|---------|-----------|
@@ -19,4 +19,4 @@ You can expect an acknowledgment within 48 hours and a resolution or status upda
1919

2020
## Scope
2121

22-
pretty-log is a logging utility with no network access, no file system writes, and no external runtime dependencies. The attack surface is limited to console output formatting. That said, any confirmed vulnerability will be taken seriously and patched promptly.
22+
pretty-log-tagged is a logging utility with no network access, no file system writes, and no external runtime dependencies. The attack surface is limited to console output formatting. That said, any confirmed vulnerability will be taken seriously and patched promptly.

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "pretty-log",
2+
"name": "pretty-log-tagged",
33
"version": "1.0.0",
44
"description": "Make console logs readable with clean, structured, tag-based output.",
55
"main": "dist/index.js",

0 commit comments

Comments
 (0)