@tamagui/proxy-worm 1.0.1-beta.36 → 1.0.1-beta.39

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 2d7dc555a7f5fc0c
1
+ @tamagui/proxy-worm:build: cache hit, replaying output 26c1e3666703d385
@@ -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.36",
3
+ "version": "1.0.1-beta.39",
4
4
  "main": "index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"