@pnpm/fetching.git-fetcher 1102.0.8 → 1102.0.9
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/CHANGELOG.md +14 -0
- package/lib/index.d.ts +12 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @pnpm/git-fetcher
|
|
2
2
|
|
|
3
|
+
## 1102.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Republished every package: the tarballs published by the v11.13.1 through v11.16.0 releases were missing most of their compiled files due to a packing bug [#13164](https://github.com/pnpm/pnpm/issues/13164).
|
|
8
|
+
|
|
9
|
+
- Updated dependencies:
|
|
10
|
+
- @pnpm/error@1100.1.0
|
|
11
|
+
- @pnpm/exec.prepare-package@1100.0.27
|
|
12
|
+
- @pnpm/fetching.fetcher-base@1100.2.4
|
|
13
|
+
- @pnpm/fs.packlist@1100.0.4
|
|
14
|
+
- @pnpm/resolving.git-resolver@1100.1.12
|
|
15
|
+
- @pnpm/store.index@1100.2.2
|
|
16
|
+
|
|
3
17
|
## 1102.0.8
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { GitFetcher } from '@pnpm/fetching.fetcher-base';
|
|
2
|
+
import type { StoreIndex } from '@pnpm/store.index';
|
|
3
|
+
export interface CreateGitFetcherOptions {
|
|
4
|
+
gitShallowHosts?: string[];
|
|
5
|
+
storeIndex: StoreIndex;
|
|
6
|
+
unsafePerm?: boolean;
|
|
7
|
+
userAgent?: string;
|
|
8
|
+
ignoreScripts?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare function createGitFetcher(createOpts: CreateGitFetcherOptions): {
|
|
11
|
+
git: GitFetcher;
|
|
12
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/fetching.git-fetcher",
|
|
3
|
-
"version": "1102.0.
|
|
3
|
+
"version": "1102.0.9",
|
|
4
4
|
"description": "A fetcher for git-hosted packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -28,26 +28,26 @@
|
|
|
28
28
|
"!*.map"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@pnpm/error": "1100.0
|
|
32
|
-
"@pnpm/exec.prepare-package": "1100.0.
|
|
33
|
-
"@pnpm/fetching.fetcher-base": "1100.2.
|
|
34
|
-
"@pnpm/fs.packlist": "1100.0.
|
|
35
|
-
"@pnpm/resolving.git-resolver": "1100.1.
|
|
36
|
-
"@pnpm/store.index": "1100.2.
|
|
31
|
+
"@pnpm/error": "1100.1.0",
|
|
32
|
+
"@pnpm/exec.prepare-package": "1100.0.27",
|
|
33
|
+
"@pnpm/fetching.fetcher-base": "1100.2.4",
|
|
34
|
+
"@pnpm/fs.packlist": "1100.0.4",
|
|
35
|
+
"@pnpm/resolving.git-resolver": "1100.1.12",
|
|
36
|
+
"@pnpm/store.index": "1100.2.2",
|
|
37
37
|
"@zkochan/rimraf": "^4.0.0",
|
|
38
38
|
"execa": "npm:safe-execa@0.3.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@pnpm/logger": "^1100.0.0",
|
|
42
|
-
"@pnpm/worker": "^1100.2.
|
|
42
|
+
"@pnpm/worker": "^1100.2.7"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@jest/globals": "30.4.1",
|
|
46
|
-
"@pnpm/fetching.git-fetcher": "1102.0.
|
|
46
|
+
"@pnpm/fetching.git-fetcher": "1102.0.9",
|
|
47
47
|
"@pnpm/logger": "1100.0.0",
|
|
48
|
-
"@pnpm/store.cafs": "1100.1.
|
|
49
|
-
"@pnpm/store.create-cafs-store": "1100.0.
|
|
50
|
-
"@pnpm/types": "1101.
|
|
48
|
+
"@pnpm/store.cafs": "1100.1.15",
|
|
49
|
+
"@pnpm/store.create-cafs-store": "1100.0.21",
|
|
50
|
+
"@pnpm/types": "1101.6.0",
|
|
51
51
|
"@pnpm/util.lex-comparator": "^4.0.1",
|
|
52
52
|
"tempy": "3.0.0"
|
|
53
53
|
},
|