@visulima/pail 2.1.18 → 2.1.20
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 +34 -0
- package/README.md +1 -1
- package/package.json +7 -73
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
## @visulima/pail [2.1.20](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.19...@visulima/pail@2.1.20) (2025-01-25)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fixed wrong node version range in package.json ([4ae2929](https://github.com/visulima/visulima/commit/4ae292984681c71a770e4d4560432f7b7c5a141a))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* fixed typescript url ([fe65a8c](https://github.com/visulima/visulima/commit/fe65a8c0296ece7ee26474c70d065b06d4d0da89))
|
|
10
|
+
* updated all dev dependencies ([37fb298](https://github.com/visulima/visulima/commit/37fb298b2af7c63be64252024e54bb3af6ddabec))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
* **@visulima/colorize:** upgraded to 1.4.20
|
|
16
|
+
* **@visulima/error:** upgraded to 4.4.15
|
|
17
|
+
* **@visulima/fmt:** upgraded to 1.1.14
|
|
18
|
+
* **@visulima/inspector:** upgraded to 1.0.20
|
|
19
|
+
* **@visulima/redact:** upgraded to 1.0.13
|
|
20
|
+
|
|
21
|
+
## @visulima/pail [2.1.19](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.18...@visulima/pail@2.1.19) (2025-01-22)
|
|
22
|
+
|
|
23
|
+
### Miscellaneous Chores
|
|
24
|
+
|
|
25
|
+
* updated all dev dependencies and all dependencies in the app folder ([87f4ccb](https://github.com/visulima/visulima/commit/87f4ccbf9f7900ec5b56f3c1477bc4a0ef571bcf))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Dependencies
|
|
29
|
+
|
|
30
|
+
* **@visulima/colorize:** upgraded to 1.4.19
|
|
31
|
+
* **@visulima/error:** upgraded to 4.4.14
|
|
32
|
+
* **@visulima/inspector:** upgraded to 1.0.19
|
|
33
|
+
* **@visulima/redact:** upgraded to 1.0.12
|
|
34
|
+
|
|
1
35
|
## @visulima/pail [2.1.18](https://github.com/visulima/visulima/compare/@visulima/pail@2.1.17...@visulima/pail@2.1.18) (2025-01-13)
|
|
2
36
|
|
|
3
37
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/pail",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.20",
|
|
4
4
|
"description": "Highly configurable Logger for Node.js, Edge and Browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ansi",
|
|
@@ -225,51 +225,14 @@
|
|
|
225
225
|
"LICENSE.md"
|
|
226
226
|
],
|
|
227
227
|
"dependencies": {
|
|
228
|
-
"@visulima/colorize": "1.4.
|
|
229
|
-
"@visulima/error": "4.4.
|
|
230
|
-
"@visulima/fmt": "1.1.
|
|
231
|
-
"@visulima/inspector": "1.0.
|
|
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
|
-
"devDependencies": {
|
|
235
|
-
"@anolilab/eslint-config": "^15.0.3",
|
|
236
|
-
"@anolilab/prettier-config": "^5.0.14",
|
|
237
|
-
"@anolilab/semantic-release-pnpm": "^1.1.6",
|
|
238
|
-
"@anolilab/semantic-release-preset": "^9.0.3",
|
|
239
|
-
"@arethetypeswrong/cli": "^0.17.2",
|
|
240
|
-
"@babel/core": "^7.26.0",
|
|
241
|
-
"@rushstack/eslint-plugin-security": "^0.8.3",
|
|
242
|
-
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
|
|
243
|
-
"@total-typescript/ts-reset": "^0.6.1",
|
|
244
|
-
"@types/node": "18.19.15",
|
|
245
|
-
"@visulima/packem": "1.10.7",
|
|
246
|
-
"@visulima/redact": "1.0.11",
|
|
247
|
-
"@vitest/coverage-v8": "^2.1.8",
|
|
248
|
-
"@vitest/ui": "^2.1.8",
|
|
249
|
-
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
250
|
-
"cross-env": "^7.0.3",
|
|
251
|
-
"esbuild": "0.24.2",
|
|
252
|
-
"eslint": "8.57.0",
|
|
253
|
-
"eslint-plugin-deprecation": "^3.0.0",
|
|
254
|
-
"eslint-plugin-etc": "^2.0.3",
|
|
255
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
256
|
-
"eslint-plugin-mdx": "^3.1.5",
|
|
257
|
-
"eslint-plugin-vitest": "^0.4.1",
|
|
258
|
-
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
259
|
-
"prettier": "^3.4.2",
|
|
260
|
-
"rimraf": "6.0.1",
|
|
261
|
-
"rotating-file-stream": "^3.2.5",
|
|
262
|
-
"secretlint": "9.0.0",
|
|
263
|
-
"semantic-release": "24.2.1",
|
|
264
|
-
"string-length": "^6.0.0",
|
|
265
|
-
"terminal-size": "^4.0.0",
|
|
266
|
-
"type-fest": "^4.32.0",
|
|
267
|
-
"typescript": "5.7.3",
|
|
268
|
-
"vitest": "^2.1.8",
|
|
269
|
-
"wrap-ansi": "^9.0.0"
|
|
270
|
-
},
|
|
271
234
|
"peerDependencies": {
|
|
272
|
-
"@visulima/redact": "1.0.
|
|
235
|
+
"@visulima/redact": "1.0.13",
|
|
273
236
|
"rotating-file-stream": "^3.1.1"
|
|
274
237
|
},
|
|
275
238
|
"peerDependenciesMeta": {
|
|
@@ -281,7 +244,7 @@
|
|
|
281
244
|
}
|
|
282
245
|
},
|
|
283
246
|
"engines": {
|
|
284
|
-
"node": ">=18
|
|
247
|
+
"node": ">=18.0.0 <=23.x"
|
|
285
248
|
},
|
|
286
249
|
"os": [
|
|
287
250
|
"darwin",
|
|
@@ -291,34 +254,5 @@
|
|
|
291
254
|
"publishConfig": {
|
|
292
255
|
"access": "public",
|
|
293
256
|
"provenance": true
|
|
294
|
-
},
|
|
295
|
-
"anolilab": {
|
|
296
|
-
"eslint-config": {
|
|
297
|
-
"plugin": {
|
|
298
|
-
"tsdoc": false
|
|
299
|
-
},
|
|
300
|
-
"warn_on_unsupported_typescript_version": false,
|
|
301
|
-
"info_on_disabling_jsx_react_rule": false,
|
|
302
|
-
"info_on_disabling_prettier_conflict_rule": false,
|
|
303
|
-
"info_on_disabling_jsonc_sort_keys_rule": false,
|
|
304
|
-
"info_on_disabling_etc_no_deprecated": false
|
|
305
|
-
}
|
|
306
|
-
},
|
|
307
|
-
"scripts": {
|
|
308
|
-
"build": "cross-env NODE_ENV=development packem build",
|
|
309
|
-
"build:prod": "cross-env NODE_ENV=production packem build",
|
|
310
|
-
"clean": "rimraf node_modules dist .eslintcache",
|
|
311
|
-
"dev": "pnpm run build --watch",
|
|
312
|
-
"lint:attw": "attw --pack",
|
|
313
|
-
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
314
|
-
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
315
|
-
"lint:package-json": "publint --strict",
|
|
316
|
-
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
|
|
317
|
-
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
|
|
318
|
-
"lint:types": "tsc --noEmit || exit 0",
|
|
319
|
-
"test": "vitest run",
|
|
320
|
-
"test:coverage": "vitest run --coverage",
|
|
321
|
-
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
322
|
-
"test:watch": "vitest"
|
|
323
257
|
}
|
|
324
258
|
}
|