@tamagui/proxy-worm 1.0.0-beta.8 → 1.0.1-beta.100

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 7ee4052a154e0f56
1
+ @tamagui/proxy-worm:build: cache hit, replaying output a4681a5f6863f65f
@@ -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/index.js CHANGED
@@ -10,6 +10,7 @@ function worm(root = false) {
10
10
  : function () {
11
11
  return worm()
12
12
  }
13
+
13
14
  return new Proxy(obj, {
14
15
  get() {
15
16
  return worm()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/proxy-worm",
3
- "version": "1.0.0-beta.8",
3
+ "version": "1.0.1-beta.100",
4
4
  "main": "index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"