repository-provider 35.2.24 → 35.2.26
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/README.md +1 -1
- package/package.json +10 -10
- package/src/attributes.mjs +1 -1
- package/types/attributes.d.mts +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "35.2.
|
|
3
|
+
"version": "35.2.26",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -25,34 +25,34 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "BSD-2-Clause",
|
|
27
27
|
"scripts": {
|
|
28
|
-
"prepare": "
|
|
28
|
+
"prepare": "node --run prepare:typescript",
|
|
29
29
|
"prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule --target es2024 --lib es2024 -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
|
|
30
|
-
"test": "
|
|
30
|
+
"test": "node --run test:browser-ava && node --run test:ava",
|
|
31
31
|
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
32
32
|
"test:browser-ava": "browser-ava --headless --no-keep-open tests/*-ava.mjs tests/*-ava-browser.mjs",
|
|
33
33
|
"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",
|
|
34
34
|
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
35
|
-
"lint": "
|
|
35
|
+
"lint": "node --run lint:docs && node --run lint:typescript",
|
|
36
36
|
"lint:docs": "documentation lint ./src/**/*.mjs",
|
|
37
37
|
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib es2024 -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"content-entry": "^11.1.
|
|
40
|
+
"content-entry": "^11.1.2",
|
|
41
41
|
"matching-iterator": "^2.1.3",
|
|
42
42
|
"pacc": "^3.1.8"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@types/readable-stream": "^4.0.
|
|
46
|
-
"ava": "^6.
|
|
47
|
-
"browser-ava": "^2.
|
|
45
|
+
"@types/readable-stream": "^4.0.18",
|
|
46
|
+
"ava": "^6.2.0",
|
|
47
|
+
"browser-ava": "^2.3.1",
|
|
48
48
|
"c8": "^10.1.2",
|
|
49
49
|
"documentation": "^14.0.3",
|
|
50
50
|
"repository-provider-test-support": "^3.1.7",
|
|
51
|
-
"semantic-release": "^24.
|
|
51
|
+
"semantic-release": "^24.2.0",
|
|
52
52
|
"typescript": "^5.7.0-beta"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
|
-
"node": ">=
|
|
55
|
+
"node": ">=22.10.0"
|
|
56
56
|
},
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
package/src/attributes.mjs
CHANGED
package/types/attributes.d.mts
CHANGED
|
@@ -57,7 +57,7 @@ export const id_attribute: AttributeDefinition;
|
|
|
57
57
|
*/
|
|
58
58
|
export const state_attribute: AttributeDefinition;
|
|
59
59
|
/**
|
|
60
|
-
* The
|
|
60
|
+
* The body text of the pull request.
|
|
61
61
|
* @type {AttributeDefinition}
|
|
62
62
|
*/
|
|
63
63
|
export const body_attribute: AttributeDefinition;
|