@visulima/pail 2.1.19 → 2.1.21

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ ## @visulima/pail [2.1.21](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.20...@visulima/pail@2.1.21) (2025-01-26)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **pail:** dont call extra log on the a function ([a272682](https://github.com/visulima/visulima/commit/a27268205556f0b338e0634143b5361b4e345e07))
6
+
7
+ ## @visulima/pail [2.1.20](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.19...@visulima/pail@2.1.20) (2025-01-25)
8
+
9
+ ### Bug Fixes
10
+
11
+ * fixed wrong node version range in package.json ([4ae2929](https://github.com/visulima/visulima/commit/4ae292984681c71a770e4d4560432f7b7c5a141a))
12
+
13
+ ### Miscellaneous Chores
14
+
15
+ * fixed typescript url ([fe65a8c](https://github.com/visulima/visulima/commit/fe65a8c0296ece7ee26474c70d065b06d4d0da89))
16
+ * updated all dev dependencies ([37fb298](https://github.com/visulima/visulima/commit/37fb298b2af7c63be64252024e54bb3af6ddabec))
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * **@visulima/colorize:** upgraded to 1.4.20
22
+ * **@visulima/error:** upgraded to 4.4.15
23
+ * **@visulima/fmt:** upgraded to 1.1.14
24
+ * **@visulima/inspector:** upgraded to 1.0.20
25
+ * **@visulima/redact:** upgraded to 1.0.13
26
+
1
27
  ## @visulima/pail [2.1.19](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.18...@visulima/pail@2.1.19) (2025-01-22)
2
28
 
3
29
  ### Miscellaneous Chores
package/README.md CHANGED
@@ -414,7 +414,7 @@ If you would like to help take a look at the [list of issues](https://github.com
414
414
  The visulima pail is open-sourced software licensed under the [MIT][license-url]
415
415
 
416
416
  [typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
417
- [typescript-url]: "typescript"
417
+ [typescript-url]: https://www.typescriptlang.org/ "TypeScript" "typescript"
418
418
  [license-image]: https://img.shields.io/npm/l/@visulima/pail?color=blueviolet&style=for-the-badge
419
419
  [license-url]: LICENSE.md "license"
420
420
  [npm-image]: https://img.shields.io/npm/v/@visulima/pail/latest.svg?style=for-the-badge&logo=npm
@@ -395,7 +395,7 @@ class PailServerImpl extends pail_browser.PailBrowserImpl {
395
395
  stream.__write = stream.write;
396
396
  }
397
397
  stream.write = (data) => {
398
- this[type].log(String(data).trim());
398
+ this[type](String(data).trim());
399
399
  };
400
400
  }
401
401
  // eslint-disable-next-line class-methods-use-this
@@ -391,7 +391,7 @@ class PailServerImpl extends PailBrowserImpl {
391
391
  stream.__write = stream.write;
392
392
  }
393
393
  stream.write = (data) => {
394
- this[type].log(String(data).trim());
394
+ this[type](String(data).trim());
395
395
  };
396
396
  }
397
397
  // eslint-disable-next-line class-methods-use-this
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/pail",
3
- "version": "2.1.19",
3
+ "version": "2.1.21",
4
4
  "description": "Highly configurable Logger for Node.js, Edge and Browser.",
5
5
  "keywords": [
6
6
  "ansi",
@@ -225,14 +225,14 @@
225
225
  "LICENSE.md"
226
226
  ],
227
227
  "dependencies": {
228
- "@visulima/colorize": "1.4.19",
229
- "@visulima/error": "4.4.14",
230
- "@visulima/fmt": "1.1.13",
231
- "@visulima/inspector": "1.0.19",
228
+ "@visulima/colorize": "1.4.20",
229
+ "@visulima/error": "4.4.15",
230
+ "@visulima/fmt": "1.1.14",
231
+ "@visulima/inspector": "1.0.20",
232
232
  "safe-stable-stringify": "^2.5.0"
233
233
  },
234
234
  "peerDependencies": {
235
- "@visulima/redact": "1.0.12",
235
+ "@visulima/redact": "1.0.13",
236
236
  "rotating-file-stream": "^3.1.1"
237
237
  },
238
238
  "peerDependenciesMeta": {
@@ -244,7 +244,7 @@
244
244
  }
245
245
  },
246
246
  "engines": {
247
- "node": ">=18.* <=23.*"
247
+ "node": ">=18.0.0 <=23.x"
248
248
  },
249
249
  "os": [
250
250
  "darwin",