@theholocron/github-client 1.6.0 → 1.6.1
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 +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -21,9 +21,9 @@ const repo = await client.repos.getRepo("owner/name");
|
|
|
21
21
|
// Labels
|
|
22
22
|
const labels = await client.labels.listLabels("owner/name");
|
|
23
23
|
await client.labels.createLabel("owner/name", {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
name: "bug",
|
|
25
|
+
color: "d73a4a",
|
|
26
|
+
description: "Something isn't working",
|
|
27
27
|
});
|
|
28
28
|
|
|
29
29
|
// Topics
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/github-client",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "A TypeScript client for the GitHub REST API",
|
|
5
5
|
"homepage": "https://github.com/theholocron/clients/tree/main/packages/github-client#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/clients/issues",
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@theholocron/http-client": "^1.6.
|
|
33
|
+
"@theholocron/http-client": "^1.6.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^26.1.2",
|
|
37
|
-
"@theholocron/eslint-config": "^7.
|
|
38
|
-
"@theholocron/tsconfig": "^7.
|
|
39
|
-
"@theholocron/tsdown-config": "^7.
|
|
40
|
-
"@theholocron/vitest-config": "^7.
|
|
37
|
+
"@theholocron/eslint-config": "^7.7.0",
|
|
38
|
+
"@theholocron/tsconfig": "^7.7.0",
|
|
39
|
+
"@theholocron/tsdown-config": "^7.7.0",
|
|
40
|
+
"@theholocron/vitest-config": "^7.7.0",
|
|
41
41
|
"@vitest/coverage-v8": "^4.1.10",
|
|
42
42
|
"@vitest/eslint-plugin": "^1.6.24",
|
|
43
43
|
"eslint": "^10.8.0",
|