@pnpm/fetching.tarball-fetcher 1100.0.3 → 1101.0.0
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/lib/index.js
CHANGED
|
@@ -14,7 +14,7 @@ export type DownloadOptions = {
|
|
|
14
14
|
onProgress?: (downloaded: number) => void;
|
|
15
15
|
integrity?: string;
|
|
16
16
|
storeIndex: StoreIndex;
|
|
17
|
-
} & Pick<FetchOptions, 'pkg' | 'appendManifest' | 'readManifest' | 'filesIndexFile'>;
|
|
17
|
+
} & Pick<FetchOptions, 'pkg' | 'appendManifest' | 'readManifest' | 'filesIndexFile' | 'ignoreFilePattern'>;
|
|
18
18
|
export type DownloadFunction = (url: string, opts: DownloadOptions) => Promise<FetchResult>;
|
|
19
19
|
export interface NpmRegistryClient {
|
|
20
20
|
get: (url: string, getOpts: object, cb: (err: Error, data: object, raw: object, res: HttpResponse) => void) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/fetching.tarball-fetcher",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1101.0.0",
|
|
4
4
|
"description": "Fetcher for packages hosted as tarballs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
33
33
|
"@pnpm/core-loggers": "1100.0.1",
|
|
34
34
|
"@pnpm/error": "1100.0.0",
|
|
35
|
-
"@pnpm/
|
|
35
|
+
"@pnpm/exec.prepare-package": "1100.0.4",
|
|
36
|
+
"@pnpm/fetching.fetcher-base": "1100.1.0",
|
|
36
37
|
"@pnpm/fetching.types": "1100.0.0",
|
|
37
|
-
"@pnpm/exec.prepare-package": "1100.0.3",
|
|
38
38
|
"@pnpm/fs.graceful-fs": "1100.0.0",
|
|
39
|
-
"@pnpm/types": "1101.0.0",
|
|
40
39
|
"@pnpm/fs.packlist": "1100.0.0",
|
|
41
|
-
"@pnpm/store.index": "1100.0.0"
|
|
40
|
+
"@pnpm/store.index": "1100.0.0",
|
|
41
|
+
"@pnpm/types": "1101.0.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@pnpm/logger": ">=1001.0.0 <1002.0.0",
|
|
45
|
-
"@pnpm/worker": "^1100.0
|
|
45
|
+
"@pnpm/worker": "^1100.1.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@jest/globals": "30.3.0",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"ssri": "13.0.1",
|
|
55
55
|
"tempy": "3.0.0",
|
|
56
56
|
"undici": "^7.2.0",
|
|
57
|
-
"@pnpm/fetching.tarball-fetcher": "
|
|
57
|
+
"@pnpm/fetching.tarball-fetcher": "1101.0.0",
|
|
58
58
|
"@pnpm/logger": "1100.0.0",
|
|
59
|
-
"@pnpm/network.fetch": "1100.0.1",
|
|
60
|
-
"@pnpm/store.create-cafs-store": "1100.0.2",
|
|
61
59
|
"@pnpm/store.cafs-types": "1100.0.0",
|
|
62
|
-
"@pnpm/
|
|
63
|
-
"@pnpm/
|
|
60
|
+
"@pnpm/store.create-cafs-store": "1100.0.3",
|
|
61
|
+
"@pnpm/network.fetch": "1100.0.1",
|
|
62
|
+
"@pnpm/types": "1101.0.0",
|
|
63
|
+
"@pnpm/test-fixtures": "1100.0.0"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">=22.13"
|