@tamagui/use-constant 2.7.7 → 3.0.0-beta.643.1

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.
@@ -1,3 +1,4 @@
1
+
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -5,47 +6,36 @@ var __getOwnPropNames = Object.getOwnPropertyNames;
5
6
  var __getProtoOf = Object.getPrototypeOf;
6
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
8
  var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: true
11
- });
9
+ for (var name in all) __defProp(target, name, {
10
+ get: all[name],
11
+ enumerable: true
12
+ });
12
13
  };
13
14
  var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") {
15
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
16
- get: () => from[key],
17
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
18
- });
19
- }
20
- return to;
15
+ if (from && typeof from === "object" || typeof from === "function") {
16
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
17
+ get: () => from[key],
18
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
19
+ });
20
+ }
21
+ return to;
21
22
  };
22
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
23
- // If the importer is in node compatibility mode or this is not an ESM
24
- // file that has been converted to a CommonJS file using a Babel-
25
- // compatible transform (i.e. "__esModule" has not been set), then set
26
- // "default" to the CommonJS "module.exports" for node compatibility.
27
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
28
- value: mod,
29
- enumerable: true
23
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
24
+ value: mod,
25
+ enumerable: true
30
26
  }) : target, mod));
31
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
32
- value: true
33
- }), mod);
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
34
28
  var index_exports = {};
35
- __export(index_exports, {
36
- useConstant: () => useConstant
37
- });
29
+ __export(index_exports, { useConstant: () => useConstant });
38
30
  module.exports = __toCommonJS(index_exports);
39
31
  var React = __toESM(require("react"), 1);
40
32
  function useConstant(fn) {
41
- if (typeof document === "undefined") {
42
- return React.useMemo(() => fn(), []);
43
- }
44
- const ref = React.useRef(void 0);
45
- if (!ref.current) {
46
- ref.current = {
47
- v: fn()
48
- };
49
- }
50
- return ref.current.v;
51
- }
33
+ if (typeof document === "undefined") {
34
+ return React.useMemo(() => fn(), []);
35
+ }
36
+ const ref = React.useRef(void 0);
37
+ if (!ref.current) {
38
+ ref.current = { v: fn() };
39
+ }
40
+ return ref.current.v;
41
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+
3
+
4
+ var __create = Object.create;
5
+ var __defProp = Object.defineProperty;
6
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7
+ var __getOwnPropNames = Object.getOwnPropertyNames;
8
+ var __getProtoOf = Object.getPrototypeOf;
9
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
10
+ var __export = (target, all) => {
11
+ for (var name in all) __defProp(target, name, {
12
+ get: all[name],
13
+ enumerable: true
14
+ });
15
+ };
16
+ var __copyProps = (to, from, except, desc) => {
17
+ if (from && typeof from === "object" || typeof from === "function") {
18
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
19
+ get: () => from[key],
20
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
+ });
22
+ }
23
+ return to;
24
+ };
25
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
26
+ value: mod,
27
+ enumerable: true
28
+ }) : target, mod));
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
+ var index_exports = {};
31
+ __export(index_exports, { useConstant: () => useConstant });
32
+ module.exports = __toCommonJS(index_exports);
33
+ var React = __toESM(require("react"), 1);
34
+ function useConstant(fn) {
35
+ if (typeof document === "undefined") {
36
+ return React.useMemo(function() {
37
+ return fn();
38
+ }, []);
39
+ }
40
+ var ref = React.useRef(void 0);
41
+ if (!ref.current) {
42
+ ref.current = { v: fn() };
43
+ }
44
+ return ref.current.v;
45
+ }
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
 
3
+
3
4
  var __create = Object.create;
4
5
  var __defProp = Object.defineProperty;
5
6
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -7,50 +8,40 @@ var __getOwnPropNames = Object.getOwnPropertyNames;
7
8
  var __getProtoOf = Object.getPrototypeOf;
8
9
  var __hasOwnProp = Object.prototype.hasOwnProperty;
9
10
  var __export = (target, all) => {
10
- for (var name in all) __defProp(target, name, {
11
- get: all[name],
12
- enumerable: true
13
- });
11
+ for (var name in all) __defProp(target, name, {
12
+ get: all[name],
13
+ enumerable: true
14
+ });
14
15
  };
15
16
  var __copyProps = (to, from, except, desc) => {
16
- if (from && typeof from === "object" || typeof from === "function") {
17
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
18
- get: () => from[key],
19
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
20
- });
21
- }
22
- return to;
17
+ if (from && typeof from === "object" || typeof from === "function") {
18
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
19
+ get: () => from[key],
20
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
+ });
22
+ }
23
+ return to;
23
24
  };
24
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
25
- // If the importer is in node compatibility mode or this is not an ESM
26
- // file that has been converted to a CommonJS file using a Babel-
27
- // compatible transform (i.e. "__esModule" has not been set), then set
28
- // "default" to the CommonJS "module.exports" for node compatibility.
29
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
30
- value: mod,
31
- enumerable: true
25
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
26
+ value: mod,
27
+ enumerable: true
32
28
  }) : target, mod));
33
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
34
- value: true
35
- }), mod);
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
30
  var index_exports = {};
37
- __export(index_exports, {
38
- useConstant: () => useConstant
39
- });
31
+ __export(index_exports, { useConstant: () => useConstant });
40
32
  module.exports = __toCommonJS(index_exports);
41
33
  var React = __toESM(require("react"), 1);
42
34
  function useConstant(fn) {
43
- if (typeof document === "undefined") {
44
- return React.useMemo(function () {
45
- return fn();
46
- }, []);
47
- }
48
- var ref = React.useRef(void 0);
49
- if (!ref.current) {
50
- ref.current = {
51
- v: fn()
52
- };
53
- }
54
- return ref.current.v;
35
+ if (typeof document === "undefined") {
36
+ return React.useMemo(function() {
37
+ return fn();
38
+ }, []);
39
+ }
40
+ var ref = React.useRef(void 0);
41
+ if (!ref.current) {
42
+ ref.current = { v: fn() };
43
+ }
44
+ return ref.current.v;
55
45
  }
46
+
56
47
  //# sourceMappingURL=index.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","useConstant","module","exports","React","__toESM","require","fn","document","useMemo","ref","useRef","current"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,aAAA;AAAAC,QAAA,CAAAD,aAAA;EAAAE,WAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAuB,GAAAT,YAAA,CAAAK,aAAA;AAIhB,IAAAK,KAAS,GAAAC,OAAA,CAAAC,OAA+B;AAE7C,SAAIL,WAAOA,CAAAM,EAAA;EACT,WAAOC,QAAM,KAAQ,WAAY,EAAE;IACrC,OAAAJ,KAAA,CAAAK,OAAA;MAEA,OAAMF,EAAM;IAEZ,GAAK;EACH;EACF,IAAAG,GAAA,GAAAN,KAAA,CAAAO,MAAA;EAEA,KAAAD,GAAO,CAAAE,OAAI;IACbF,GAAA,CAAAE,OAAA","ignoreList":[]}
1
+ {"version":3,"file":"index.native.js","names":[],"sources":["cjs/index.native.js"],"sourcesContent":["\"use strict\";\nvar __create = Object.create;\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __getProtoOf = Object.getPrototypeOf;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(\n // If the importer is in node compatibility mode or this is not an ESM\n // file that has been converted to a CommonJS file using a Babel-\n // compatible transform (i.e. \"__esModule\" has not been set), then set\n // \"default\" to the CommonJS \"module.exports\" for node compatibility.\n isNodeMode || !mod || !mod.__esModule ? __defProp(target, \"default\", { value: mod, enumerable: true }) : target,\n mod\n));\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar index_exports = {};\n__export(index_exports, {\n useConstant: () => useConstant\n});\nmodule.exports = __toCommonJS(index_exports);\nvar React = __toESM(require(\"react\"), 1);\nfunction useConstant(fn) {\n if (typeof document === \"undefined\") {\n return React.useMemo(function() {\n return fn();\n }, []);\n }\n var ref = React.useRef(void 0);\n if (!ref.current) {\n ref.current = {\n v: fn()\n };\n }\n return ref.current.v;\n}\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;;AACA,IAAI,WAAW,OAAO;AACtB,IAAI,YAAY,OAAO;AACvB,IAAI,mBAAmB,OAAO;AAC9B,IAAI,oBAAoB,OAAO;AAC/B,IAAI,eAAe,OAAO;AAC1B,IAAI,eAAe,OAAO,UAAU;AACpC,IAAI,YAAY,QAAQ,QAAQ;CAC9B,KAAK,IAAI,QAAQ,KACf,UAAU,QAAQ,MAAM;EAAE,KAAK,IAAI;EAAO,YAAY;CAAK,CAAC;AAChE;AACA,IAAI,eAAe,IAAI,MAAM,QAAQ,SAAS;CAC5C,IAAI,QAAQ,OAAO,SAAS,YAAY,OAAO,SAAS,YAAY;EAClE,KAAK,IAAI,OAAO,kBAAkB,IAAI,GACpC,IAAI,CAAC,aAAa,KAAK,IAAI,GAAG,KAAK,QAAQ,QACzC,UAAU,IAAI,KAAK;GAAE,WAAW,KAAK;GAAM,YAAY,EAAE,OAAO,iBAAiB,MAAM,GAAG,MAAM,KAAK;EAAW,CAAC;CACvH;CACA,OAAO;AACT;AACA,IAAI,WAAW,KAAK,YAAY,YAAY,SAAS,OAAO,OAAO,SAAS,aAAa,GAAG,CAAC,IAAI,CAAC,GAAG,YAKnG,cAAc,CAAC,OAAO,CAAC,IAAI,aAAa,UAAU,QAAQ,WAAW;CAAE,OAAO;CAAK,YAAY;AAAK,CAAC,IAAI,QACzG,GACF;AACA,IAAI,gBAAgB,QAAQ,YAAY,UAAU,CAAC,GAAG,cAAc,EAAE,OAAO,KAAK,CAAC,GAAG,GAAG;AACzF,IAAI,gBAAgB,CAAC;AACrB,SAAS,eAAe,EACtB,mBAAmB,YACrB,CAAC;AACD,OAAO,UAAU,aAAa,aAAa;AAC3C,IAAI,QAAQ,QAAQ,QAAQ,OAAO,GAAG,CAAC;AACvC,SAAS,YAAY,IAAI;CACvB,IAAI,OAAO,aAAa,aAAa;EACnC,OAAO,MAAM,QAAQ,WAAW;GAC9B,OAAO,GAAG;EACZ,GAAG,CAAC,CAAC;CACP;CACA,IAAI,MAAM,MAAM,OAAO,KAAK,CAAC;CAC7B,IAAI,CAAC,IAAI,SAAS;EAChB,IAAI,UAAU,EACZ,GAAG,GAAG,EACR;CACF;CACA,OAAO,IAAI,QAAQ;AACrB"}
package/dist/esm/index.js CHANGED
@@ -1,15 +1,15 @@
1
1
  import * as React from "react";
2
+
2
3
  function useConstant(fn) {
3
- if (typeof document === "undefined") {
4
- return React.useMemo(() => fn(), []);
5
- }
6
- const ref = React.useRef(void 0);
7
- if (!ref.current) {
8
- ref.current = {
9
- v: fn()
10
- };
11
- }
12
- return ref.current.v;
4
+ if (typeof document === "undefined") {
5
+ return React.useMemo(() => fn(), []);
6
+ }
7
+ const ref = React.useRef(void 0);
8
+ if (!ref.current) {
9
+ ref.current = { v: fn() };
10
+ }
11
+ return ref.current.v;
13
12
  }
13
+
14
14
  export { useConstant };
15
15
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","useConstant","fn","document","useMemo","ref","useRef","current","v"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAYA,KAAA,MAAW;AAIhB,SAASC,YAAeC,EAAA,EAAgB;EAE7C,IAAI,OAAOC,QAAA,KAAa,aAAa;IACnC,OAAOH,KAAA,CAAMI,OAAA,CAAQ,MAAMF,EAAA,CAAG,GAAG,EAAE;EACrC;EAEA,MAAMG,GAAA,GAAML,KAAA,CAAMM,MAAA,CAAqB,MAAS;EAEhD,IAAI,CAACD,GAAA,CAAIE,OAAA,EAAS;IAChBF,GAAA,CAAIE,OAAA,GAAU;MAAEC,CAAA,EAAGN,EAAA,CAAG;IAAE;EAC1B;EAEA,OAAOG,GAAA,CAAIE,OAAA,CAAQC,CAAA;AACrB","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["import * as React from \"react\";\nfunction useConstant(fn) {\n if (typeof document === \"undefined\") {\n return React.useMemo(() => fn(), []);\n }\n const ref = React.useRef(void 0);\n if (!ref.current) {\n ref.current = { v: fn() };\n }\n return ref.current.v;\n}\nexport {\n useConstant\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,SAAS,YAAY,IAAI;CACvB,IAAI,OAAO,aAAa,aAAa;EACnC,OAAO,MAAM,cAAc,GAAG,GAAG,CAAC,CAAC;CACrC;CACA,MAAM,MAAM,MAAM,OAAO,KAAK,CAAC;CAC/B,IAAI,CAAC,IAAI,SAAS;EAChB,IAAI,UAAU,EAAE,GAAG,GAAG,EAAE;CAC1B;CACA,OAAO,IAAI,QAAQ;AACrB"}
@@ -1,15 +1,15 @@
1
1
  import * as React from "react";
2
+
2
3
  function useConstant(fn) {
3
- if (typeof document === "undefined") {
4
- return React.useMemo(() => fn(), []);
5
- }
6
- const ref = React.useRef(void 0);
7
- if (!ref.current) {
8
- ref.current = {
9
- v: fn()
10
- };
11
- }
12
- return ref.current.v;
4
+ if (typeof document === "undefined") {
5
+ return React.useMemo(() => fn(), []);
6
+ }
7
+ const ref = React.useRef(void 0);
8
+ if (!ref.current) {
9
+ ref.current = { v: fn() };
10
+ }
11
+ return ref.current.v;
13
12
  }
13
+
14
14
  export { useConstant };
15
15
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","useConstant","fn","document","useMemo","ref","useRef","current","v"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAYA,KAAA,MAAW;AAIhB,SAASC,YAAeC,EAAA,EAAgB;EAE7C,IAAI,OAAOC,QAAA,KAAa,aAAa;IACnC,OAAOH,KAAA,CAAMI,OAAA,CAAQ,MAAMF,EAAA,CAAG,GAAG,EAAE;EACrC;EAEA,MAAMG,GAAA,GAAML,KAAA,CAAMM,MAAA,CAAqB,MAAS;EAEhD,IAAI,CAACD,GAAA,CAAIE,OAAA,EAAS;IAChBF,GAAA,CAAIE,OAAA,GAAU;MAAEC,CAAA,EAAGN,EAAA,CAAG;IAAE;EAC1B;EAEA,OAAOG,GAAA,CAAIE,OAAA,CAAQC,CAAA;AACrB","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["import * as React from \"react\";\nfunction useConstant(fn) {\n if (typeof document === \"undefined\") {\n return React.useMemo(() => fn(), []);\n }\n const ref = React.useRef(void 0);\n if (!ref.current) {\n ref.current = { v: fn() };\n }\n return ref.current.v;\n}\nexport {\n useConstant\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,SAAS,YAAY,IAAI;CACvB,IAAI,OAAO,aAAa,aAAa;EACnC,OAAO,MAAM,cAAc,GAAG,GAAG,CAAC,CAAC;CACrC;CACA,MAAM,MAAM,MAAM,OAAO,KAAK,CAAC;CAC/B,IAAI,CAAC,IAAI,SAAS;EAChB,IAAI,UAAU,EAAE,GAAG,GAAG,EAAE;CAC1B;CACA,OAAO,IAAI,QAAQ;AACrB"}
@@ -1,17 +1,17 @@
1
1
  import * as React from "react";
2
+
2
3
  function useConstant(fn) {
3
- if (typeof document === "undefined") {
4
- return React.useMemo(function () {
5
- return fn();
6
- }, []);
7
- }
8
- var ref = React.useRef(void 0);
9
- if (!ref.current) {
10
- ref.current = {
11
- v: fn()
12
- };
13
- }
14
- return ref.current.v;
4
+ if (typeof document === "undefined") {
5
+ return React.useMemo(function() {
6
+ return fn();
7
+ }, []);
8
+ }
9
+ var ref = React.useRef(void 0);
10
+ if (!ref.current) {
11
+ ref.current = { v: fn() };
12
+ }
13
+ return ref.current.v;
15
14
  }
15
+
16
16
  export { useConstant };
17
17
  //# sourceMappingURL=index.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","useConstant","fn","document","useMemo","ref","useRef","current","v"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAYA,KAAA,MAAW;AAIhB,SAASC,YAAeC,EAAA,EAAgB;EAE7C,IAAI,OAAOC,QAAA,KAAa,aAAa;IACnC,OAAOH,KAAA,CAAMI,OAAA,CAAQ,YAAS;MAChC,OAAAF,EAAA;IAEA,KAAM;EAEN;EACE,IAAAG,GAAI,GAAAL,KAAA,CAAUM,MAAK,MAAK;EAC1B,KAAAD,GAAA,CAAAE,OAAA;IAEAF,GAAA,CAAAE,OAAW;MACbC,CAAA,EAAAN,EAAA","ignoreList":[]}
1
+ {"version":3,"file":"index.native.js","names":[],"sources":["esm/index.native.js"],"sourcesContent":["import * as React from \"react\";\nfunction useConstant(fn) {\n if (typeof document === \"undefined\") {\n return React.useMemo(function() {\n return fn();\n }, []);\n }\n var ref = React.useRef(void 0);\n if (!ref.current) {\n ref.current = {\n v: fn()\n };\n }\n return ref.current.v;\n}\nexport {\n useConstant\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,SAAS,YAAY,IAAI;CACvB,IAAI,OAAO,aAAa,aAAa;EACnC,OAAO,MAAM,QAAQ,WAAW;GAC9B,OAAO,GAAG;EACZ,GAAG,CAAC,CAAC;CACP;CACA,IAAI,MAAM,MAAM,OAAO,KAAK,CAAC;CAC7B,IAAI,CAAC,IAAI,SAAS;EAChB,IAAI,UAAU,EACZ,GAAG,GAAG,EACR;CACF;CACA,OAAO,IAAI,QAAQ;AACrB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/use-constant",
3
- "version": "2.7.7",
3
+ "version": "3.0.0-beta.643.1",
4
4
  "files": [
5
5
  "src",
6
6
  "types",
@@ -33,7 +33,7 @@
33
33
  "clean:build": "tamagui-build clean:build"
34
34
  },
35
35
  "devDependencies": {
36
- "@tamagui/build": "2.7.7",
36
+ "@tamagui/build": "3.0.0-beta.643.1",
37
37
  "react": ">=19"
38
38
  },
39
39
  "peerDependencies": {