()
| 122 | } |
| 123 | |
| 124 | async function copyRNShims() { |
| 125 | await asyncCopyTo( |
| 126 | `${__dirname}/shims/react-native`, |
| 127 | 'build/react-native/shims' |
| 128 | ); |
| 129 | await asyncCopyTo( |
| 130 | require.resolve('react-native-renderer/src/ReactNativeTypes.js'), |
| 131 | 'build/react-native/shims/ReactNativeTypes.js' |
| 132 | ); |
| 133 | } |
| 134 | |
| 135 | async function copyAllShims() { |
| 136 | await Promise.all([copyWWWShims(), copyRNShims()]); |
no test coverage detected