drizzy-agent 0.5.3 → 0.5.4
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/dist/cli/index.js +12 -12
- package/dist/index.js +0 -4
- package/dist/tools/hashline-edit/validation.d.ts +0 -2
- package/package.json +12 -12
package/dist/cli/index.js
CHANGED
|
@@ -5420,7 +5420,7 @@ var {
|
|
|
5420
5420
|
// package.json
|
|
5421
5421
|
var package_default = {
|
|
5422
5422
|
name: "drizzy-agent",
|
|
5423
|
-
version: "0.5.
|
|
5423
|
+
version: "0.5.4",
|
|
5424
5424
|
description: "DrizzyAgent - AI agent plugin for OpenCode",
|
|
5425
5425
|
main: "dist/index.js",
|
|
5426
5426
|
types: "dist/index.d.ts",
|
|
@@ -5496,17 +5496,17 @@ var package_default = {
|
|
|
5496
5496
|
typescript: "^5.7.3"
|
|
5497
5497
|
},
|
|
5498
5498
|
optionalDependencies: {
|
|
5499
|
-
"drizzy-agent-darwin-arm64": "0.5.
|
|
5500
|
-
"drizzy-agent-darwin-x64": "0.5.
|
|
5501
|
-
"drizzy-agent-darwin-x64-baseline": "0.5.
|
|
5502
|
-
"drizzy-agent-linux-arm64": "0.5.
|
|
5503
|
-
"drizzy-agent-linux-arm64-musl": "0.5.
|
|
5504
|
-
"drizzy-agent-linux-x64": "0.5.
|
|
5505
|
-
"drizzy-agent-linux-x64-baseline": "0.5.
|
|
5506
|
-
"drizzy-agent-linux-x64-musl": "0.5.
|
|
5507
|
-
"drizzy-agent-linux-x64-musl-baseline": "0.5.
|
|
5508
|
-
"drizzy-agent-windows-x64": "0.5.
|
|
5509
|
-
"drizzy-agent-windows-x64-baseline": "0.5.
|
|
5499
|
+
"drizzy-agent-darwin-arm64": "0.5.4",
|
|
5500
|
+
"drizzy-agent-darwin-x64": "0.5.4",
|
|
5501
|
+
"drizzy-agent-darwin-x64-baseline": "0.5.4",
|
|
5502
|
+
"drizzy-agent-linux-arm64": "0.5.4",
|
|
5503
|
+
"drizzy-agent-linux-arm64-musl": "0.5.4",
|
|
5504
|
+
"drizzy-agent-linux-x64": "0.5.4",
|
|
5505
|
+
"drizzy-agent-linux-x64-baseline": "0.5.4",
|
|
5506
|
+
"drizzy-agent-linux-x64-musl": "0.5.4",
|
|
5507
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.5.4",
|
|
5508
|
+
"drizzy-agent-windows-x64": "0.5.4",
|
|
5509
|
+
"drizzy-agent-windows-x64-baseline": "0.5.4"
|
|
5510
5510
|
},
|
|
5511
5511
|
overrides: {
|
|
5512
5512
|
"@opencode-ai/sdk": "^1.2.24"
|
package/dist/index.js
CHANGED
|
@@ -75299,13 +75299,9 @@ function validateLineRef(lines, ref) {
|
|
|
75299
75299
|
}
|
|
75300
75300
|
|
|
75301
75301
|
class HashlineMismatchError extends Error {
|
|
75302
|
-
mismatches;
|
|
75303
|
-
fileLines;
|
|
75304
75302
|
remaps;
|
|
75305
75303
|
constructor(mismatches, fileLines) {
|
|
75306
75304
|
super(HashlineMismatchError.formatMessage(mismatches, fileLines));
|
|
75307
|
-
this.mismatches = mismatches;
|
|
75308
|
-
this.fileLines = fileLines;
|
|
75309
75305
|
this.name = "HashlineMismatchError";
|
|
75310
75306
|
const remaps = new Map;
|
|
75311
75307
|
for (const mismatch of mismatches) {
|
|
@@ -10,8 +10,6 @@ export declare function normalizeLineRef(ref: string): string;
|
|
|
10
10
|
export declare function parseLineRef(ref: string): LineRef;
|
|
11
11
|
export declare function validateLineRef(lines: string[], ref: string): void;
|
|
12
12
|
export declare class HashlineMismatchError extends Error {
|
|
13
|
-
private readonly mismatches;
|
|
14
|
-
private readonly fileLines;
|
|
15
13
|
readonly remaps: ReadonlyMap<string, string>;
|
|
16
14
|
constructor(mismatches: HashMismatch[], fileLines: string[]);
|
|
17
15
|
static formatMessage(mismatches: HashMismatch[], fileLines: string[]): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzy-agent",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "DrizzyAgent - AI agent plugin for OpenCode",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -76,17 +76,17 @@
|
|
|
76
76
|
"typescript": "^5.7.3"
|
|
77
77
|
},
|
|
78
78
|
"optionalDependencies": {
|
|
79
|
-
"drizzy-agent-darwin-arm64": "0.5.
|
|
80
|
-
"drizzy-agent-darwin-x64": "0.5.
|
|
81
|
-
"drizzy-agent-darwin-x64-baseline": "0.5.
|
|
82
|
-
"drizzy-agent-linux-arm64": "0.5.
|
|
83
|
-
"drizzy-agent-linux-arm64-musl": "0.5.
|
|
84
|
-
"drizzy-agent-linux-x64": "0.5.
|
|
85
|
-
"drizzy-agent-linux-x64-baseline": "0.5.
|
|
86
|
-
"drizzy-agent-linux-x64-musl": "0.5.
|
|
87
|
-
"drizzy-agent-linux-x64-musl-baseline": "0.5.
|
|
88
|
-
"drizzy-agent-windows-x64": "0.5.
|
|
89
|
-
"drizzy-agent-windows-x64-baseline": "0.5.
|
|
79
|
+
"drizzy-agent-darwin-arm64": "0.5.4",
|
|
80
|
+
"drizzy-agent-darwin-x64": "0.5.4",
|
|
81
|
+
"drizzy-agent-darwin-x64-baseline": "0.5.4",
|
|
82
|
+
"drizzy-agent-linux-arm64": "0.5.4",
|
|
83
|
+
"drizzy-agent-linux-arm64-musl": "0.5.4",
|
|
84
|
+
"drizzy-agent-linux-x64": "0.5.4",
|
|
85
|
+
"drizzy-agent-linux-x64-baseline": "0.5.4",
|
|
86
|
+
"drizzy-agent-linux-x64-musl": "0.5.4",
|
|
87
|
+
"drizzy-agent-linux-x64-musl-baseline": "0.5.4",
|
|
88
|
+
"drizzy-agent-windows-x64": "0.5.4",
|
|
89
|
+
"drizzy-agent-windows-x64-baseline": "0.5.4"
|
|
90
90
|
},
|
|
91
91
|
"overrides": {
|
|
92
92
|
"@opencode-ai/sdk": "^1.2.24"
|