@farcaster/frame-host-react-native 0.0.54 → 0.1.0
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.
- package/dist/index.d.ts +1 -3
- package/dist/index.js +7 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/index.ts +10 -3
- package/dist/webview.d.ts +0 -15
- package/dist/webview.js +0 -103
- package/dist/webviewAdapter.d.ts +0 -30
- package/dist/webviewAdapter.js +0 -58
- package/src/webview.ts +0 -126
- package/src/webviewAdapter.ts +0 -117
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
// Deprecation warning
|
|
2
|
+
if (typeof console !== 'undefined' && console.warn) {
|
|
3
|
+
console.warn('[DEPRECATION WARNING] @farcaster/frame-host-react-native is deprecated. Please migrate to @farcaster/miniapp-host-react-native. ' +
|
|
4
|
+
'See https://github.com/farcasterxyz/frames/blob/main/MIGRATION.md for migration guide.');
|
|
5
|
+
}
|
|
6
|
+
// Re-export everything from miniapp-host-react-native
|
|
7
|
+
export * from '@farcaster/miniapp-host-react-native';
|