github-repository-provider 9.0.8 → 9.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-repository-provider",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"license": "BSD-2-Clause",
|
|
26
26
|
"scripts": {
|
|
27
27
|
"prepare": "npm run prepare:typescript",
|
|
28
|
-
"prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types -t esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
|
|
28
|
+
"prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule -t esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
|
|
29
29
|
"test": "npm run test:ava",
|
|
30
30
|
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
31
31
|
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
|
|
32
32
|
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
33
33
|
"lint": "npm run lint:docs && npm run lint:typescript",
|
|
34
34
|
"lint:docs": "documentation lint ./src/**/*.mjs",
|
|
35
|
-
"lint:typescript": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
35
|
+
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"content-entry": "^
|
|
38
|
+
"content-entry": "^10.0.1",
|
|
39
39
|
"fetch-link-util": "^1.1.1",
|
|
40
40
|
"fetch-rate-limit-util": "^4.2.2",
|
|
41
41
|
"matching-iterator": "^2.1.3",
|
|
@@ -61,7 +61,7 @@ declare const LazyBufferContentEntry_base: new (name: string) => {
|
|
|
61
61
|
isBlob: boolean;
|
|
62
62
|
isCollection: boolean;
|
|
63
63
|
};
|
|
64
|
-
equals(other:
|
|
64
|
+
equals(other: import("content-entry").BaseEntry): Promise<boolean>;
|
|
65
65
|
};
|
|
66
66
|
declare class LazyBufferContentEntry extends LazyBufferContentEntry_base {
|
|
67
67
|
constructor(name: any, mode: any, branch: any);
|