@wsurface/debug 2.0.6 → 2.0.8

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 +1 -1
  2. package/package.json +8 -4
package/README.md CHANGED
@@ -64,7 +64,7 @@ pnpm add @wsurface/debug
64
64
  </p>
65
65
 
66
66
  <p align="center">
67
- <a href="https://github.com/nuneswip/wsurface-debug/tree/main/docs">
67
+ <a href="https://surfacedocs.onrender.com/debug">
68
68
  View Documentation
69
69
  </a>
70
70
  </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wsurface/debug",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "A simple and powerful logger for your project.",
5
5
  "keywords": [
6
6
  "debug",
@@ -27,10 +27,14 @@
27
27
  "author": "nuneswip",
28
28
  "license": "MIT",
29
29
  "type": "module",
30
- "main": "./src/esm/index.mjs",
30
+ "main": "./src/cjs/index.cjs",
31
+ "module": "./src/esm/index.mjs",
31
32
  "exports": {
32
- "import": "./src/esm/index.mjs",
33
- "require": "./src/cjs/index.cjs"
33
+ ".": {
34
+ "import": "./src/esm/index.mjs",
35
+ "require": "./src/cjs/index.cjs",
36
+ "default": "./src/esm/index.mjs"
37
+ }
34
38
  },
35
39
  "files": [
36
40
  "src",