Compare commits

...

2 commits

Author SHA1 Message Date
7dbb638dee
1.0.3 2025-04-22 20:07:23 -04:00
5906a579cb
Your message 2025-04-22 20:07:18 -04:00
2 changed files with 4 additions and 4 deletions

View file

@ -14,19 +14,19 @@ A lightweight console and file logger with color-coded output and timestamped en
## Installation ## Installation
```bash ```bash
npm install @creations/logger npm install @creations.works/logger
``` ```
Or with Bun: Or with Bun:
```bash ```bash
bun add @creations/logger bun add @creations.works/logger
``` ```
## Usage ## Usage
```ts ```ts
import { logger } from "@creations/logger"; import { logger } from "@creations.works/logger";
logger.info("This is an info message"); logger.info("This is an info message");
logger.warn("This is a warning", { breakLine: true }); logger.warn("This is a warning", { breakLine: true });

View file

@ -1,6 +1,6 @@
{ {
"name": "@creations.works/logger", "name": "@creations.works/logger",
"version": "1.0.2", "version": "1.0.3",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",