opencode-hashline 1.3.2 → 1.3.3

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.
@@ -16,6 +16,7 @@ var BoundedSet = class {
16
16
  constructor(maxSize) {
17
17
  this.maxSize = maxSize;
18
18
  }
19
+ maxSize;
19
20
  set = /* @__PURE__ */ new Set();
20
21
  has(value) {
21
22
  return this.set.has(value);
@@ -749,6 +749,7 @@ var BoundedSet = class {
749
749
  constructor(maxSize) {
750
750
  this.maxSize = maxSize;
751
751
  }
752
+ maxSize;
752
753
  set = /* @__PURE__ */ new Set();
753
754
  has(value) {
754
755
  return this.set.has(value);
@@ -3,7 +3,7 @@ import {
3
3
  createFileReadAfterHook,
4
4
  createSystemPromptHook,
5
5
  setDebug
6
- } from "./chunk-3ED7MDEC.js";
6
+ } from "./chunk-2FSVSE7C.js";
7
7
  import {
8
8
  HashlineCache,
9
9
  HashlineError,
package/dist/utils.cjs CHANGED
@@ -730,6 +730,7 @@ var BoundedSet = class {
730
730
  constructor(maxSize) {
731
731
  this.maxSize = maxSize;
732
732
  }
733
+ maxSize;
733
734
  set = /* @__PURE__ */ new Set();
734
735
  has(value) {
735
736
  return this.set.has(value);
package/dist/utils.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  createFileReadAfterHook,
4
4
  createSystemPromptHook,
5
5
  isFileReadTool
6
- } from "./chunk-3ED7MDEC.js";
6
+ } from "./chunk-2FSVSE7C.js";
7
7
  import {
8
8
  DEFAULT_CONFIG,
9
9
  DEFAULT_EXCLUDE_PATTERNS,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-hashline",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Hashline plugin for OpenCode — content-addressable line hashing for precise AI code editing",
5
5
  "main": "dist/opencode-hashline.cjs",
6
6
  "module": "dist/opencode-hashline.js",
@@ -53,7 +53,7 @@
53
53
  "tsup": "^8.5.1",
54
54
  "typescript": "^5.9.3",
55
55
  "vitest": "^4.0.18",
56
- "zod": "^4.1.8"
56
+ "zod": "~4.1.8"
57
57
  },
58
58
  "dependencies": {
59
59
  "picomatch": "^4.0.3"