@naturalcycles/nodejs-lib 15.65.0 → 15.65.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/nodejs-lib",
3
3
  "type": "module",
4
- "version": "15.65.0",
4
+ "version": "15.65.1",
5
5
  "dependencies": {
6
6
  "@naturalcycles/js-lib": "^15",
7
7
  "@types/js-yaml": "^4",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/through2-concurrent": "^2",
24
- "@naturalcycles/dev-lib": "18.4.2"
24
+ "@naturalcycles/dev-lib": "20.12.10"
25
25
  },
26
26
  "exports": {
27
27
  ".": "./dist/index.js",
@@ -4,8 +4,7 @@ import type { TransformLogProgressOptions, TransformMapOptions } from '../index.
4
4
  import { Pipeline } from '../pipeline.js'
5
5
 
6
6
  export interface NDJSONMapOptions<IN = any, OUT = IN>
7
- extends TransformMapOptions<IN, OUT>,
8
- TransformLogProgressOptions<IN> {
7
+ extends TransformMapOptions<IN, OUT>, TransformLogProgressOptions<IN> {
9
8
  inputFilePath: string
10
9
  outputFilePath: string
11
10
 
@@ -4,8 +4,7 @@ import { progressLogger } from '../progressLogger.js'
4
4
  import type { TransformOptions, TransformTyped } from '../stream.model.js'
5
5
 
6
6
  export interface TransformLogProgressOptions<IN = any>
7
- extends ProgressLoggerCfg<IN>,
8
- TransformOptions {}
7
+ extends ProgressLoggerCfg<IN>, TransformOptions {}
9
8
 
10
9
  /**
11
10
  * Pass-through transform that optionally logs progress.