@quatrain/code-github 1.1.1 → 1.1.2
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 +21 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# @quatrain/code-github
|
|
2
|
+
|
|
3
|
+
GitHub API integration for Quatrain code management.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
This package is part of the Quatrain Core monorepo. It implements the `@quatrain/code` interfaces specifically for GitHub, allowing seamless interaction with GitHub repositories, PRs, and issues.
|
|
8
|
+
|
|
9
|
+
## HOWTO / Usage Examples
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
import { GithubAdapter } from '@quatrain/code-github'
|
|
13
|
+
|
|
14
|
+
const github = new GithubAdapter({ token: 'ghp_...' })
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Conventions & Technical Details
|
|
18
|
+
|
|
19
|
+
- Follows the standard Quatrain architecture patterns.
|
|
20
|
+
- Ensure proper configuration before usage.
|
|
21
|
+
- See the root monorepo documentation for more details on building and testing this package.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/code-github",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"description": "GitHub repository adapter",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@octokit/rest": "^20.0.2",
|
|
24
|
-
"@quatrain/code": "^1.1.
|
|
25
|
-
"@quatrain/core": "^1.
|
|
24
|
+
"@quatrain/code": "^1.1.2",
|
|
25
|
+
"@quatrain/core": "^1.2.5"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@tsconfig/recommended": "^1.0.1",
|