extract-base-iterator 1.2.21 → 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 +9 -8
- package/dist/types/DirectoryEntry.d.mts +0 -8
- package/dist/types/FileEntry.d.mts +0 -8
- package/dist/types/LinkEntry.d.mts +0 -8
- package/dist/types/SymbolicLinkEntry.d.mts +0 -8
- package/dist/types/fs/chmod.d.mts +0 -1
- package/dist/types/fs/chown.d.mts +0 -1
- package/dist/types/fs/lstatReal.d.mts +0 -1
- package/dist/types/fs/utimes.d.mts +0 -1
- package/dist/types/fs/waitForAccess.d.mts +0 -1
- package/dist/types/index.d.mts +0 -6
- package/dist/types/stripPath.d.mts +0 -1
- package/dist/types/validateAttributes.d.mts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "extract-base-iterator",
|
|
3
|
-
"version": "1.2.
|
|
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
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
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
|
-
"
|
|
31
|
-
"types": "dist/types/index.d.ts",
|
|
32
|
+
"types": "dist/cjs/index.d.cts",
|
|
32
33
|
"files": [
|
|
33
34
|
"dist"
|
|
34
35
|
],
|
|
@@ -45,9 +46,9 @@
|
|
|
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.
|
|
49
|
+
"queue-cb": "^1.4.17",
|
|
49
50
|
"rimraf2": "^2.8.2",
|
|
50
|
-
"stack-base-iterator": "^1.1.
|
|
51
|
+
"stack-base-iterator": "^1.1.20"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
54
|
"@types/mocha": "*",
|
|
@@ -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;
|
package/dist/types/index.d.mts
DELETED
|
@@ -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;
|