@vidavidorra/bunyan-pretty-stream 6.0.4 → 6.0.6

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.
@@ -1,5 +1,3 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
- /// <reference types="node" resolution-mode="require"/>
3
1
  import { type TransformCallback, Transform } from 'node:stream';
4
2
  import { type PublicOptions as Options } from './options.js';
5
3
  declare class PrettyStream extends Transform {
package/dist/options.d.ts CHANGED
@@ -8,16 +8,16 @@ declare const publicSchema: z.ZodObject<{
8
8
  source: z.ZodDefault<z.ZodBoolean>;
9
9
  extras: z.ZodDefault<z.ZodBoolean>;
10
10
  }, "strict", z.ZodTypeAny, {
11
+ name: boolean;
11
12
  time: boolean;
12
13
  source: boolean;
13
- name: boolean;
14
14
  hostname: boolean;
15
15
  pid: boolean;
16
16
  extras: boolean;
17
17
  }, {
18
+ name?: boolean | undefined;
18
19
  time?: boolean | undefined;
19
20
  source?: boolean | undefined;
20
- name?: boolean | undefined;
21
21
  hostname?: boolean | undefined;
22
22
  pid?: boolean | undefined;
23
23
  extras?: boolean | undefined;
@@ -93,9 +93,9 @@ declare const publicSchema: z.ZodObject<{
93
93
  format?: string | undefined;
94
94
  };
95
95
  show: {
96
+ name: boolean;
96
97
  time: boolean;
97
98
  source: boolean;
98
- name: boolean;
99
99
  hostname: boolean;
100
100
  pid: boolean;
101
101
  extras: boolean;
@@ -121,9 +121,9 @@ declare const publicSchema: z.ZodObject<{
121
121
  preset?: "DATE_SHORT" | "DATE_MED" | "DATE_MED_WITH_WEEKDAY" | "DATE_FULL" | "DATE_HUGE" | "TIME_SIMPLE" | "TIME_WITH_SECONDS" | "TIME_WITH_SHORT_OFFSET" | "TIME_WITH_LONG_OFFSET" | "TIME_24_SIMPLE" | "TIME_24_WITH_SECONDS" | "TIME_24_WITH_SHORT_OFFSET" | "TIME_24_WITH_LONG_OFFSET" | "DATETIME_SHORT" | "DATETIME_MED" | "DATETIME_FULL" | "DATETIME_HUGE" | "DATETIME_SHORT_WITH_SECONDS" | "DATETIME_MED_WITH_SECONDS" | "DATETIME_FULL_WITH_SECONDS" | "DATETIME_HUGE_WITH_SECONDS" | "TIME_ISO_8601" | "TIME_ISO_8601_OFFSET" | "DATETIME_ISO_8601" | "DATETIME_ISO_8601_OFFSET" | undefined;
122
122
  } | undefined;
123
123
  show?: {
124
+ name?: boolean | undefined;
124
125
  time?: boolean | undefined;
125
126
  source?: boolean | undefined;
126
- name?: boolean | undefined;
127
127
  hostname?: boolean | undefined;
128
128
  pid?: boolean | undefined;
129
129
  extras?: boolean | undefined;
@@ -153,16 +153,16 @@ declare const schema: z.ZodObject<z.objectUtil.extendShape<{
153
153
  source: z.ZodDefault<z.ZodBoolean>;
154
154
  extras: z.ZodDefault<z.ZodBoolean>;
155
155
  }, "strict", z.ZodTypeAny, {
156
+ name: boolean;
156
157
  time: boolean;
157
158
  source: boolean;
158
- name: boolean;
159
159
  hostname: boolean;
160
160
  pid: boolean;
161
161
  extras: boolean;
162
162
  }, {
163
+ name?: boolean | undefined;
163
164
  time?: boolean | undefined;
164
165
  source?: boolean | undefined;
165
- name?: boolean | undefined;
166
166
  hostname?: boolean | undefined;
167
167
  pid?: boolean | undefined;
168
168
  extras?: boolean | undefined;
@@ -298,9 +298,9 @@ declare const schema: z.ZodObject<z.objectUtil.extendShape<{
298
298
  format?: string | undefined;
299
299
  };
300
300
  show: {
301
+ name: boolean;
301
302
  time: boolean;
302
303
  source: boolean;
303
- name: boolean;
304
304
  hostname: boolean;
305
305
  pid: boolean;
306
306
  extras: boolean;
@@ -332,9 +332,9 @@ declare const schema: z.ZodObject<z.objectUtil.extendShape<{
332
332
  preset?: "DATE_SHORT" | "DATE_MED" | "DATE_MED_WITH_WEEKDAY" | "DATE_FULL" | "DATE_HUGE" | "TIME_SIMPLE" | "TIME_WITH_SECONDS" | "TIME_WITH_SHORT_OFFSET" | "TIME_WITH_LONG_OFFSET" | "TIME_24_SIMPLE" | "TIME_24_WITH_SECONDS" | "TIME_24_WITH_SHORT_OFFSET" | "TIME_24_WITH_LONG_OFFSET" | "DATETIME_SHORT" | "DATETIME_MED" | "DATETIME_FULL" | "DATETIME_HUGE" | "DATETIME_SHORT_WITH_SECONDS" | "DATETIME_MED_WITH_SECONDS" | "DATETIME_FULL_WITH_SECONDS" | "DATETIME_HUGE_WITH_SECONDS" | "TIME_ISO_8601" | "TIME_ISO_8601_OFFSET" | "DATETIME_ISO_8601" | "DATETIME_ISO_8601_OFFSET" | undefined;
333
333
  } | undefined;
334
334
  show?: {
335
+ name?: boolean | undefined;
335
336
  time?: boolean | undefined;
336
337
  source?: boolean | undefined;
337
- name?: boolean | undefined;
338
338
  hostname?: boolean | undefined;
339
339
  pid?: boolean | undefined;
340
340
  extras?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vidavidorra/bunyan-pretty-stream",
3
- "version": "6.0.4",
3
+ "version": "6.0.6",
4
4
  "description": "Highly configurable Bunyan stream with pretty output",
5
5
  "keywords": [
6
6
  "bunyan-stream",
@@ -193,10 +193,10 @@
193
193
  ]
194
194
  },
195
195
  "dependencies": {
196
- "@sindresorhus/is": "6.3.1",
196
+ "@sindresorhus/is": "7.0.0",
197
197
  "chalk": "5.3.0",
198
198
  "json-stringify-pretty-compact": "4.0.0",
199
- "luxon": "3.4.4",
199
+ "luxon": "3.5.0",
200
200
  "zod": "3.23.8"
201
201
  },
202
202
  "devDependencies": {
@@ -207,21 +207,21 @@
207
207
  "@semantic-release/git": "10.0.1",
208
208
  "@types/bunyan": "1.8.11",
209
209
  "@types/luxon": "3.4.2",
210
- "@types/node": "20.12.12",
210
+ "@types/node": "20.14.14",
211
211
  "@vidavidorra/commitlint-config": "7.0.6",
212
212
  "ava": "6.1.3",
213
213
  "bunyan": "1.8.15",
214
214
  "bunyan-1.x": "npm:bunyan@1.8.15",
215
215
  "bunyan-2.x": "npm:bunyan@2.0.5",
216
- "c8": "9.1.0",
216
+ "c8": "10.1.2",
217
217
  "dot-prop": "9.0.0",
218
- "husky": "9.0.11",
219
- "lint-staged": "15.2.2",
220
- "prettier": "3.2.5",
221
- "semantic-release": "23.1.1",
218
+ "husky": "9.1.4",
219
+ "lint-staged": "15.2.8",
220
+ "prettier": "3.3.3",
221
+ "semantic-release": "24.0.0",
222
222
  "strip-ansi": "7.1.0",
223
- "typescript": "5.4.5",
224
- "xo": "0.58.0"
223
+ "typescript": "5.5.4",
224
+ "xo": "0.59.3"
225
225
  },
226
226
  "peerDependencies": {
227
227
  "bunyan": ">=1.8.15 <3"
@@ -231,5 +231,8 @@
231
231
  },
232
232
  "publishConfig": {
233
233
  "access": "public"
234
+ },
235
+ "overrides": {
236
+ "conventional-changelog-conventionalcommits": ">= 8.0.0"
234
237
  }
235
238
  }