open-azdo 0.1.10 → 0.2.0
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 +7 -15
- package/dist/open-azdo.js +47468 -29052
- package/dist/open-azdo.js.map +165 -45
- package/examples/azure-pipelines.review.debug.yml +2 -2
- package/examples/azure-pipelines.review.yml +1 -1
- package/package.json +13 -22
|
@@ -10,7 +10,7 @@ variables:
|
|
|
10
10
|
BunLinuxX64Sha256: f57bc0187e39623de716ba3a389fda5486b2d7be7131a980ba54dc7b733d2e08
|
|
11
11
|
OpenCodeVersion: 1.2.27
|
|
12
12
|
OpenCodeLinuxX64Sha256: 6fe3820b145857f7ff507d2826058b7acf1fce8258def1498468dd43809e69e8
|
|
13
|
-
OpenAzdoVersion: 0.1.
|
|
13
|
+
OpenAzdoVersion: 0.1.10
|
|
14
14
|
RunOpenCodeSmokeTest: "false"
|
|
15
15
|
|
|
16
16
|
steps:
|
|
@@ -58,4 +58,4 @@ steps:
|
|
|
58
58
|
# Azure Pipelines: enable "Allow scripts to access the OAuth token".
|
|
59
59
|
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
|
|
60
60
|
OPENAI_API_KEY: $(OPENAI_API_KEY)
|
|
61
|
-
|
|
61
|
+
OPEN_AZDO_OPENCODE_TIMEOUT: "10 minutes"
|
package/package.json
CHANGED
|
@@ -1,44 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-azdo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Secure Azure DevOps pull request review CLI powered by OpenCode",
|
|
5
|
-
"
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"directory": "apps/open-azdo"
|
|
8
|
+
},
|
|
6
9
|
"bin": {
|
|
7
10
|
"open-azdo": "./dist/open-azdo.js"
|
|
8
11
|
},
|
|
9
|
-
"publishConfig": {
|
|
10
|
-
"access": "public"
|
|
11
|
-
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|
|
14
14
|
"README.md",
|
|
15
15
|
"SECURITY.md",
|
|
16
16
|
"examples"
|
|
17
17
|
],
|
|
18
|
-
"
|
|
19
|
-
|
|
18
|
+
"type": "module",
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
20
21
|
},
|
|
21
22
|
"scripts": {
|
|
22
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
23
|
-
"fmt": "oxfmt --write src bin test",
|
|
24
|
-
"fmt:check": "oxfmt --check src bin test",
|
|
25
|
-
"lint": "oxlint src bin test",
|
|
26
|
-
"test": "bun test",
|
|
27
|
-
"check": "bun run typecheck && bun run lint && bun run fmt:check && bun test",
|
|
28
23
|
"build": "bun run build.ts",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
24
|
+
"typecheck": "tsc --noEmit",
|
|
25
|
+
"test": "bun test",
|
|
26
|
+
"prepublishOnly": "bun install --cwd ../.. --frozen-lockfile && bun run --cwd ../.. check && bun run build"
|
|
31
27
|
},
|
|
32
28
|
"dependencies": {
|
|
33
29
|
"@effect/platform-bun": "4.0.0-beta.33",
|
|
34
30
|
"effect": "4.0.0-beta.33"
|
|
35
31
|
},
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"@tsconfig/bun": "1.0.10",
|
|
39
|
-
"@types/bun": "1.3.10",
|
|
40
|
-
"oxfmt": "0.41.0",
|
|
41
|
-
"oxlint": "1.56.0",
|
|
42
|
-
"typescript": "5.9.3"
|
|
32
|
+
"engines": {
|
|
33
|
+
"bun": ">=1.3.10"
|
|
43
34
|
}
|
|
44
35
|
}
|