extract-base-iterator 1.2.22 → 1.2.23

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,6 +1,6 @@
1
1
  {
2
2
  "name": "extract-base-iterator",
3
- "version": "1.2.22",
3
+ "version": "1.2.23",
4
4
  "description": "Base iterator for extract iterators like tar-iterator and zip-iterator",
5
5
  "keywords": [
6
6
  "extract",
@@ -22,13 +22,14 @@
22
22
  "author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
23
23
  "type": "module",
24
24
  "exports": {
25
- "import": "./dist/esm/index.mjs",
26
- "require": "./dist/cjs/index.cjs",
27
- "types": "./dist/types/index.d.ts"
25
+ ".": {
26
+ "import": "./dist/esm/index.mjs",
27
+ "require": "./dist/cjs/index.cjs"
28
+ },
29
+ "./package.json": "./package.json"
28
30
  },
29
31
  "main": "dist/cjs/index.cjs",
30
- "module": "dist/esm/index.mjs",
31
- "types": "dist/types/index.d.ts",
32
+ "types": "dist/cjs/index.d.cts",
32
33
  "files": [
33
34
  "dist"
34
35
  ],
@@ -45,7 +46,7 @@
45
46
  "lodash.compact": "^3.0.1",
46
47
  "mkdirp-classic": "^0.5.3",
47
48
  "object-assign": "^4.1.1",
48
- "queue-cb": "^1.4.16",
49
+ "queue-cb": "^1.4.17",
49
50
  "rimraf2": "^2.8.2",
50
51
  "stack-base-iterator": "^1.1.20"
51
52
  },
@@ -1,8 +0,0 @@
1
- export default function DirectoryEntry(attributes: any): void;
2
- export default class DirectoryEntry {
3
- constructor(attributes: any);
4
- type: string;
5
- basename: any;
6
- create(dest: any, options: any, callback: any): any;
7
- destroy(): void;
8
- }
@@ -1,8 +0,0 @@
1
- export default function FileEntry(attributes: any): void;
2
- export default class FileEntry {
3
- constructor(attributes: any);
4
- basename: any;
5
- type: string;
6
- create(dest: any, options: any, callback: any): any;
7
- destroy(): void;
8
- }
@@ -1,8 +0,0 @@
1
- export default function LinkEntry(attributes: any, _type: any): void;
2
- export default class LinkEntry {
3
- constructor(attributes: any, _type: any);
4
- basename: any;
5
- type: string;
6
- create(dest: any, options: any, callback: any): any;
7
- destroy(): void;
8
- }
@@ -1,8 +0,0 @@
1
- export default function SymbolicLinkEntry(attributes: any): void;
2
- export default class SymbolicLinkEntry {
3
- constructor(attributes: any);
4
- basename: any;
5
- type: string;
6
- create(dest: any, options: any, callback: any): any;
7
- destroy(): void;
8
- }
@@ -1 +0,0 @@
1
- export default function chmodFn(fullPath: any, entry: any, _options: any, callback: any): any;
@@ -1 +0,0 @@
1
- export default function chownFn(fullPath: any, entry: any, _options: any, callback: any): any;
@@ -1 +0,0 @@
1
- export default function lstatReal(path: any, callback: any): void;
@@ -1 +0,0 @@
1
- export default function utimes(fullPath: any, entry: any, options: any, callback: any): void;
@@ -1 +0,0 @@
1
- export default function waitForAccess(fullPath: any, callback: any): void;
@@ -1,6 +0,0 @@
1
- export default StackBaseIterator;
2
- export { default as DirectoryEntry } from "./DirectoryEntry.mjs";
3
- export { default as FileEntry } from "./FileEntry.mjs";
4
- export { default as LinkEntry } from "./LinkEntry.mjs";
5
- export { default as SymbolicLinkEntry } from "./SymbolicLinkEntry.mjs";
6
- import StackBaseIterator from 'stack-base-iterator';
@@ -1 +0,0 @@
1
- export default function stripPath(relativePath: any, options: any): any;
@@ -1 +0,0 @@
1
- export default function validateAttributes(attributes: any, keys: any): void;