@eslint-react/jsx 1.5.11-next.2 → 1.5.11-next.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/index.js CHANGED
@@ -17,7 +17,7 @@ var __export = (target, all3) => {
17
17
  __defProp(target, name, { get: all3[name], enumerable: true });
18
18
  };
19
19
 
20
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Function.js
20
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Function.js
21
21
  var Function_exports = {};
22
22
  __export(Function_exports, {
23
23
  SK: () => SK,
@@ -192,14 +192,14 @@ function flow(ab, bc, cd, de, ef, fg, gh, hi, ij) {
192
192
  var hole = /* @__PURE__ */ unsafeCoerce(absurd);
193
193
  var SK = (_2, b2) => b2;
194
194
 
195
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Equivalence.js
195
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Equivalence.js
196
196
  var make = (isEquivalent) => (self, that) => self === that || isEquivalent(self, that);
197
197
 
198
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/version.js
199
- var moduleVersion = "3.0.7";
198
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/version.js
199
+ var moduleVersion = "3.1.1";
200
200
  var getCurrentVersion = () => moduleVersion;
201
201
 
202
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/GlobalValue.js
202
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/GlobalValue.js
203
203
  var globalStoreId = /* @__PURE__ */ Symbol.for(`effect/GlobalValue/globalStoreId/${/* @__PURE__ */ getCurrentVersion()}`);
204
204
  if (!(globalStoreId in globalThis)) {
205
205
  globalThis[globalStoreId] = /* @__PURE__ */ new Map();
@@ -212,7 +212,7 @@ var globalValue = (id, compute) => {
212
212
  return globalStore.get(id);
213
213
  };
214
214
 
215
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Predicate.js
215
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Predicate.js
216
216
  var Predicate_exports = {};
217
217
  __export(Predicate_exports, {
218
218
  all: () => all,
@@ -349,10 +349,10 @@ var some = (collection) => (a2) => {
349
349
  return false;
350
350
  };
351
351
 
352
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/errors.js
352
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/errors.js
353
353
  var getBugErrorMessage = (message) => `BUG: ${message} - please report an issue at https://github.com/Effect-TS/effect/issues`;
354
354
 
355
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Utils.js
355
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Utils.js
356
356
  var GenKindTypeId = /* @__PURE__ */ Symbol.for("effect/Gen/GenKind");
357
357
  var isGenKind = (u2) => isObject(u2) && GenKindTypeId in u2;
358
358
  var GenKindImpl = class {
@@ -591,8 +591,12 @@ function yieldWrapGet(self) {
591
591
  }
592
592
  throw new Error(getBugErrorMessage("yieldWrapGet"));
593
593
  }
594
+ var structuralRegionState = /* @__PURE__ */ globalValue("effect/Utils/isStructuralRegion", () => ({
595
+ enabled: false,
596
+ tester: void 0
597
+ }));
594
598
 
595
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Hash.js
599
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Hash.js
596
600
  var randomHashCache = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/randomHashCache"), () => /* @__PURE__ */ new WeakMap());
597
601
  var pcgr = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/pcgr"), () => new PCGRandom());
598
602
  var symbol = /* @__PURE__ */ Symbol.for("effect/Hash");
@@ -626,6 +630,9 @@ var hash = (self) => {
626
630
  }
627
631
  };
628
632
  var random = (self) => {
633
+ if (structuralRegionState.enabled === true) {
634
+ return 0;
635
+ }
629
636
  if (!randomHashCache.has(self)) {
630
637
  randomHashCache.set(self, number(pcgr.integer(Number.MAX_SAFE_INTEGER)));
631
638
  }
@@ -658,27 +665,39 @@ var cached = function() {
658
665
  if (arguments.length === 1) {
659
666
  const self2 = arguments[0];
660
667
  return function(hash3) {
661
- Object.defineProperty(self2, symbol, {
662
- value() {
663
- return hash3;
664
- },
665
- enumerable: false
666
- });
668
+ const original2 = self2[symbol].bind(self2);
669
+ if (structuralRegionState.enabled === false) {
670
+ Object.defineProperty(self2, symbol, {
671
+ value() {
672
+ if (structuralRegionState.enabled === true) {
673
+ return original2();
674
+ }
675
+ return hash3;
676
+ },
677
+ enumerable: false
678
+ });
679
+ }
667
680
  return hash3;
668
681
  };
669
682
  }
670
683
  const self = arguments[0];
671
684
  const hash2 = arguments[1];
672
- Object.defineProperty(self, symbol, {
673
- value() {
674
- return hash2;
675
- },
676
- enumerable: false
677
- });
685
+ const original = self[symbol].bind(self);
686
+ if (structuralRegionState.enabled === false) {
687
+ Object.defineProperty(self, symbol, {
688
+ value() {
689
+ if (structuralRegionState.enabled === true) {
690
+ return original();
691
+ }
692
+ return hash2;
693
+ },
694
+ enumerable: false
695
+ });
696
+ }
678
697
  return hash2;
679
698
  };
680
699
 
681
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Equal.js
700
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Equal.js
682
701
  var symbol2 = /* @__PURE__ */ Symbol.for("effect/Equal");
683
702
  function equals() {
684
703
  if (arguments.length === 1) {
@@ -694,17 +713,37 @@ function compareBoth(self, that) {
694
713
  if (selfType !== typeof that) {
695
714
  return false;
696
715
  }
697
- if ((selfType === "object" || selfType === "function") && self !== null && that !== null) {
698
- if (isEqual(self) && isEqual(that)) {
699
- return hash(self) === hash(that) && self[symbol2](that);
716
+ if (selfType === "object" || selfType === "function") {
717
+ if (self !== null && that !== null) {
718
+ if (isEqual(self) && isEqual(that)) {
719
+ return hash(self) === hash(that) && self[symbol2](that);
720
+ }
721
+ }
722
+ if (structuralRegionState.enabled) {
723
+ if (Array.isArray(self) && Array.isArray(that)) {
724
+ return self.length === that.length && self.every((v2, i2) => compareBoth(v2, that[i2]));
725
+ }
726
+ if (Object.getPrototypeOf(self) === Object.prototype && Object.getPrototypeOf(self) === Object.prototype) {
727
+ const keysSelf = Object.keys(self);
728
+ const keysThat = Object.keys(that);
729
+ if (keysSelf.length === keysThat.length) {
730
+ for (const key of keysSelf) {
731
+ if (!(key in that && compareBoth(self[key], that[key]))) {
732
+ return structuralRegionState.tester ? structuralRegionState.tester(self, that) : false;
733
+ }
734
+ }
735
+ return true;
736
+ }
737
+ }
738
+ return structuralRegionState.tester ? structuralRegionState.tester(self, that) : false;
700
739
  }
701
740
  }
702
- return false;
741
+ return structuralRegionState.enabled && structuralRegionState.tester ? structuralRegionState.tester(self, that) : false;
703
742
  }
704
743
  var isEqual = (u2) => hasProperty(u2, symbol2);
705
744
  var equivalence = () => equals;
706
745
 
707
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Inspectable.js
746
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Inspectable.js
708
747
  var NodeInspectSymbol = /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom");
709
748
  var toJSON = (x2) => {
710
749
  if (hasProperty(x2, "toJSON") && isFunction2(x2["toJSON"]) && x2["toJSON"].length === 0) {
@@ -716,7 +755,7 @@ var toJSON = (x2) => {
716
755
  };
717
756
  var format = (x2) => JSON.stringify(x2, null, 2);
718
757
 
719
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Pipeable.js
758
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Pipeable.js
720
759
  var pipeArguments = (self, args) => {
721
760
  switch (args.length) {
722
761
  case 1:
@@ -747,7 +786,7 @@ var pipeArguments = (self, args) => {
747
786
  }
748
787
  };
749
788
 
750
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/effectable.js
789
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/effectable.js
751
790
  var EffectTypeId = /* @__PURE__ */ Symbol.for("effect/Effect");
752
791
  var StreamTypeId = /* @__PURE__ */ Symbol.for("effect/Stream");
753
792
  var SinkTypeId = /* @__PURE__ */ Symbol.for("effect/Sink");
@@ -808,7 +847,7 @@ var EffectPrototype = {
808
847
  }
809
848
  };
810
849
 
811
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/option.js
850
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/option.js
812
851
  var TypeId = /* @__PURE__ */ Symbol.for("effect/Option");
813
852
  var CommonProto = {
814
853
  ...EffectPrototype,
@@ -866,7 +905,7 @@ var some2 = (value) => {
866
905
  return a2;
867
906
  };
868
907
 
869
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/either.js
908
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/either.js
870
909
  var TypeId2 = /* @__PURE__ */ Symbol.for("effect/Either");
871
910
  var CommonProto2 = {
872
911
  ...EffectPrototype,
@@ -930,7 +969,7 @@ var right = (right2) => {
930
969
  var getLeft = (self) => isRight(self) ? none : some2(self.left);
931
970
  var getRight = (self) => isLeft(self) ? none : some2(self.right);
932
971
 
933
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Option.js
972
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Option.js
934
973
  var Option_exports = {};
935
974
  __export(Option_exports, {
936
975
  Do: () => Do,
@@ -992,10 +1031,10 @@ __export(Option_exports, {
992
1031
  zipWith: () => zipWith
993
1032
  });
994
1033
 
995
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Order.js
1034
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Order.js
996
1035
  var make2 = (compare) => (self, that) => self === that ? 0 : compare(self, that);
997
1036
 
998
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Option.js
1037
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Option.js
999
1038
  var TypeId3 = /* @__PURE__ */ Symbol.for("effect/Option");
1000
1039
  var none2 = () => none;
1001
1040
  var some3 = some2;
package/dist/index.mjs CHANGED
@@ -11,7 +11,7 @@ var __export = (target, all3) => {
11
11
  __defProp(target, name, { get: all3[name], enumerable: true });
12
12
  };
13
13
 
14
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Function.js
14
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Function.js
15
15
  var Function_exports = {};
16
16
  __export(Function_exports, {
17
17
  SK: () => SK,
@@ -186,14 +186,14 @@ function flow(ab, bc, cd, de, ef, fg, gh, hi, ij) {
186
186
  var hole = /* @__PURE__ */ unsafeCoerce(absurd);
187
187
  var SK = (_2, b2) => b2;
188
188
 
189
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Equivalence.js
189
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Equivalence.js
190
190
  var make = (isEquivalent) => (self, that) => self === that || isEquivalent(self, that);
191
191
 
192
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/version.js
193
- var moduleVersion = "3.0.7";
192
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/version.js
193
+ var moduleVersion = "3.1.1";
194
194
  var getCurrentVersion = () => moduleVersion;
195
195
 
196
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/GlobalValue.js
196
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/GlobalValue.js
197
197
  var globalStoreId = /* @__PURE__ */ Symbol.for(`effect/GlobalValue/globalStoreId/${/* @__PURE__ */ getCurrentVersion()}`);
198
198
  if (!(globalStoreId in globalThis)) {
199
199
  globalThis[globalStoreId] = /* @__PURE__ */ new Map();
@@ -206,7 +206,7 @@ var globalValue = (id, compute) => {
206
206
  return globalStore.get(id);
207
207
  };
208
208
 
209
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Predicate.js
209
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Predicate.js
210
210
  var Predicate_exports = {};
211
211
  __export(Predicate_exports, {
212
212
  all: () => all,
@@ -343,10 +343,10 @@ var some = (collection) => (a2) => {
343
343
  return false;
344
344
  };
345
345
 
346
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/errors.js
346
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/errors.js
347
347
  var getBugErrorMessage = (message) => `BUG: ${message} - please report an issue at https://github.com/Effect-TS/effect/issues`;
348
348
 
349
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Utils.js
349
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Utils.js
350
350
  var GenKindTypeId = /* @__PURE__ */ Symbol.for("effect/Gen/GenKind");
351
351
  var isGenKind = (u2) => isObject(u2) && GenKindTypeId in u2;
352
352
  var GenKindImpl = class {
@@ -585,8 +585,12 @@ function yieldWrapGet(self) {
585
585
  }
586
586
  throw new Error(getBugErrorMessage("yieldWrapGet"));
587
587
  }
588
+ var structuralRegionState = /* @__PURE__ */ globalValue("effect/Utils/isStructuralRegion", () => ({
589
+ enabled: false,
590
+ tester: void 0
591
+ }));
588
592
 
589
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Hash.js
593
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Hash.js
590
594
  var randomHashCache = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/randomHashCache"), () => /* @__PURE__ */ new WeakMap());
591
595
  var pcgr = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/pcgr"), () => new PCGRandom());
592
596
  var symbol = /* @__PURE__ */ Symbol.for("effect/Hash");
@@ -620,6 +624,9 @@ var hash = (self) => {
620
624
  }
621
625
  };
622
626
  var random = (self) => {
627
+ if (structuralRegionState.enabled === true) {
628
+ return 0;
629
+ }
623
630
  if (!randomHashCache.has(self)) {
624
631
  randomHashCache.set(self, number(pcgr.integer(Number.MAX_SAFE_INTEGER)));
625
632
  }
@@ -652,27 +659,39 @@ var cached = function() {
652
659
  if (arguments.length === 1) {
653
660
  const self2 = arguments[0];
654
661
  return function(hash3) {
655
- Object.defineProperty(self2, symbol, {
656
- value() {
657
- return hash3;
658
- },
659
- enumerable: false
660
- });
662
+ const original2 = self2[symbol].bind(self2);
663
+ if (structuralRegionState.enabled === false) {
664
+ Object.defineProperty(self2, symbol, {
665
+ value() {
666
+ if (structuralRegionState.enabled === true) {
667
+ return original2();
668
+ }
669
+ return hash3;
670
+ },
671
+ enumerable: false
672
+ });
673
+ }
661
674
  return hash3;
662
675
  };
663
676
  }
664
677
  const self = arguments[0];
665
678
  const hash2 = arguments[1];
666
- Object.defineProperty(self, symbol, {
667
- value() {
668
- return hash2;
669
- },
670
- enumerable: false
671
- });
679
+ const original = self[symbol].bind(self);
680
+ if (structuralRegionState.enabled === false) {
681
+ Object.defineProperty(self, symbol, {
682
+ value() {
683
+ if (structuralRegionState.enabled === true) {
684
+ return original();
685
+ }
686
+ return hash2;
687
+ },
688
+ enumerable: false
689
+ });
690
+ }
672
691
  return hash2;
673
692
  };
674
693
 
675
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Equal.js
694
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Equal.js
676
695
  var symbol2 = /* @__PURE__ */ Symbol.for("effect/Equal");
677
696
  function equals() {
678
697
  if (arguments.length === 1) {
@@ -688,17 +707,37 @@ function compareBoth(self, that) {
688
707
  if (selfType !== typeof that) {
689
708
  return false;
690
709
  }
691
- if ((selfType === "object" || selfType === "function") && self !== null && that !== null) {
692
- if (isEqual(self) && isEqual(that)) {
693
- return hash(self) === hash(that) && self[symbol2](that);
710
+ if (selfType === "object" || selfType === "function") {
711
+ if (self !== null && that !== null) {
712
+ if (isEqual(self) && isEqual(that)) {
713
+ return hash(self) === hash(that) && self[symbol2](that);
714
+ }
715
+ }
716
+ if (structuralRegionState.enabled) {
717
+ if (Array.isArray(self) && Array.isArray(that)) {
718
+ return self.length === that.length && self.every((v2, i2) => compareBoth(v2, that[i2]));
719
+ }
720
+ if (Object.getPrototypeOf(self) === Object.prototype && Object.getPrototypeOf(self) === Object.prototype) {
721
+ const keysSelf = Object.keys(self);
722
+ const keysThat = Object.keys(that);
723
+ if (keysSelf.length === keysThat.length) {
724
+ for (const key of keysSelf) {
725
+ if (!(key in that && compareBoth(self[key], that[key]))) {
726
+ return structuralRegionState.tester ? structuralRegionState.tester(self, that) : false;
727
+ }
728
+ }
729
+ return true;
730
+ }
731
+ }
732
+ return structuralRegionState.tester ? structuralRegionState.tester(self, that) : false;
694
733
  }
695
734
  }
696
- return false;
735
+ return structuralRegionState.enabled && structuralRegionState.tester ? structuralRegionState.tester(self, that) : false;
697
736
  }
698
737
  var isEqual = (u2) => hasProperty(u2, symbol2);
699
738
  var equivalence = () => equals;
700
739
 
701
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Inspectable.js
740
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Inspectable.js
702
741
  var NodeInspectSymbol = /* @__PURE__ */ Symbol.for("nodejs.util.inspect.custom");
703
742
  var toJSON = (x2) => {
704
743
  if (hasProperty(x2, "toJSON") && isFunction2(x2["toJSON"]) && x2["toJSON"].length === 0) {
@@ -710,7 +749,7 @@ var toJSON = (x2) => {
710
749
  };
711
750
  var format = (x2) => JSON.stringify(x2, null, 2);
712
751
 
713
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Pipeable.js
752
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Pipeable.js
714
753
  var pipeArguments = (self, args) => {
715
754
  switch (args.length) {
716
755
  case 1:
@@ -741,7 +780,7 @@ var pipeArguments = (self, args) => {
741
780
  }
742
781
  };
743
782
 
744
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/effectable.js
783
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/effectable.js
745
784
  var EffectTypeId = /* @__PURE__ */ Symbol.for("effect/Effect");
746
785
  var StreamTypeId = /* @__PURE__ */ Symbol.for("effect/Stream");
747
786
  var SinkTypeId = /* @__PURE__ */ Symbol.for("effect/Sink");
@@ -802,7 +841,7 @@ var EffectPrototype = {
802
841
  }
803
842
  };
804
843
 
805
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/option.js
844
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/option.js
806
845
  var TypeId = /* @__PURE__ */ Symbol.for("effect/Option");
807
846
  var CommonProto = {
808
847
  ...EffectPrototype,
@@ -860,7 +899,7 @@ var some2 = (value) => {
860
899
  return a2;
861
900
  };
862
901
 
863
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/internal/either.js
902
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/internal/either.js
864
903
  var TypeId2 = /* @__PURE__ */ Symbol.for("effect/Either");
865
904
  var CommonProto2 = {
866
905
  ...EffectPrototype,
@@ -924,7 +963,7 @@ var right = (right2) => {
924
963
  var getLeft = (self) => isRight(self) ? none : some2(self.left);
925
964
  var getRight = (self) => isLeft(self) ? none : some2(self.right);
926
965
 
927
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Option.js
966
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Option.js
928
967
  var Option_exports = {};
929
968
  __export(Option_exports, {
930
969
  Do: () => Do,
@@ -986,10 +1025,10 @@ __export(Option_exports, {
986
1025
  zipWith: () => zipWith
987
1026
  });
988
1027
 
989
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Order.js
1028
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Order.js
990
1029
  var make2 = (compare) => (self, that) => self === that ? 0 : compare(self, that);
991
1030
 
992
- // ../../../node_modules/.pnpm/effect@3.0.7/node_modules/effect/dist/esm/Option.js
1031
+ // ../../../node_modules/.pnpm/effect@3.1.1/node_modules/effect/dist/esm/Option.js
993
1032
  var TypeId3 = /* @__PURE__ */ Symbol.for("effect/Option");
994
1033
  var none2 = () => none;
995
1034
  var some3 = some2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslint-react/jsx",
3
- "version": "1.5.11-next.2",
3
+ "version": "1.5.11-next.4",
4
4
  "description": "ESLint React's TSESTree AST utility module for static analysis of JSX.",
5
5
  "homepage": "https://github.com/rel1cx/eslint-react",
6
6
  "bugs": {
@@ -39,14 +39,14 @@
39
39
  "@typescript-eslint/types": "^7.8.0",
40
40
  "@typescript-eslint/utils": "^7.8.0",
41
41
  "micro-memoize": "4.1.2",
42
- "@eslint-react/ast": "1.5.11-next.2",
43
- "@eslint-react/tools": "1.5.11-next.2",
44
- "@eslint-react/shared": "1.5.11-next.2",
45
- "@eslint-react/types": "1.5.11-next.2",
46
- "@eslint-react/var": "1.5.11-next.2"
42
+ "@eslint-react/ast": "1.5.11-next.4",
43
+ "@eslint-react/shared": "1.5.11-next.4",
44
+ "@eslint-react/tools": "1.5.11-next.4",
45
+ "@eslint-react/types": "1.5.11-next.4",
46
+ "@eslint-react/var": "1.5.11-next.4"
47
47
  },
48
48
  "devDependencies": {
49
- "effect": "3.0.7"
49
+ "effect": "3.1.1"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsup",