@tamagui/proxy-worm 1.0.1-beta.37 → 1.0.1-beta.38

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 +1 @@
1
- @tamagui/proxy-worm:build: cache hit, replaying output b25fbb402f164b7a
1
+ @tamagui/proxy-worm:build: cache hit, replaying output f6a938fb968cc218
@@ -0,0 +1,16 @@
1
+ const View = require('react-native').View
2
+ module.exports = new Proxy(
3
+ {
4
+ get default() {
5
+ return View
6
+ },
7
+ },
8
+ {
9
+ get(_, key) {
10
+ if (key === 'createAnimatedComponent') {
11
+ return (x) => x
12
+ }
13
+ return View
14
+ },
15
+ }
16
+ )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/proxy-worm",
3
- "version": "1.0.1-beta.37",
3
+ "version": "1.0.1-beta.38",
4
4
  "main": "index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"