Skip to content
This repository was archived by the owner on Sep 14, 2024. It is now read-only.

Commit

Permalink
fix: module declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtrindade committed May 30, 2024
1 parent 77d847c commit f5a7f6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Import the Log module into your code:

### Logging

```js
```ts
/**
* @required {string} message - data to be logged.
* @optional {string} tag - use to help identify the source of the log message.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lunacrew/logger",
"version": "1.0.2",
"version": "1.0.3",
"description": "Node.js logger with dynamic log levels",
"main": "dist/index.js",
"types": "src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Color } from './types/Color'

declare module '@ashtrindade/logger' {
declare module '@lunacrew/logger' {

/**
* The `Log` class provides static methods for logging messages with different log levels.
Expand Down

0 comments on commit f5a7f6f

Please sign in to comment.