-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP
- Loading branch information
Showing
19 changed files
with
2,024 additions
and
2,100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
node_modules/ | ||
.expo/ | ||
dist/ | ||
expo-env.d.ts | ||
npm-debug.* | ||
*.jks | ||
*.p8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
android/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
"babel-preset-expo", | ||
// Prevents unnecessary babel transform BigInt to number for Hermes. | ||
{ unstable_transformProfile: "hermes-stable" }, | ||
], | ||
], | ||
plugins: [ | ||
["@babel/plugin-proposal-decorators", { version: "legacy" }], | ||
"@babel/plugin-proposal-export-namespace-from", | ||
"@babel/plugin-transform-flow-strip-types", // For privy (phone country selector) | ||
["@babel/plugin-transform-class-properties", { loose: true }], // For privy | ||
["@babel/plugin-transform-private-methods", { loose: true }], // For privy | ||
[ | ||
"module-resolver", | ||
{ | ||
alias: { | ||
"fast-text-encoding": "text-encoding", | ||
// crypto: "react-native-quick-crypto", | ||
"react-native-sqlite-storage": "@op-engineering/op-sqlite", | ||
crypto: "crypto-browserify", | ||
// This entrypoint mapping is done in @xmtp/user-preferences-bindings-wasm's "exports" in package.json | ||
// but we don't want to enable unstable_enablePackageExports for now in metro.config.js | ||
"@xmtp/user-preferences-bindings-wasm/web": | ||
"@xmtp/user-preferences-bindings-wasm/dist/web/user_preferences_bindings_wasm", | ||
"react-native-webview": "react-native-webview/src/index.ts", | ||
// module.exports = { | ||
// presets: [ | ||
// [ | ||
// "babel-preset-expo", | ||
// // Prevents unnecessary babel transform BigInt to number for Hermes. | ||
// { unstable_transformProfile: "hermes-stable" }, | ||
// ], | ||
// ], | ||
// plugins: [ | ||
// ["@babel/plugin-proposal-decorators", { version: "legacy" }], | ||
// "@babel/plugin-proposal-export-namespace-from", | ||
// "@babel/plugin-transform-flow-strip-types", // For privy (phone country selector) | ||
// ["@babel/plugin-transform-class-properties", { loose: true }], // For privy | ||
// ["@babel/plugin-transform-private-methods", { loose: true }], // For privy | ||
// [ | ||
// "module-resolver", | ||
// { | ||
// alias: { | ||
// "fast-text-encoding": "text-encoding", | ||
// // crypto: "react-native-quick-crypto", | ||
// "react-native-sqlite-storage": "@op-engineering/op-sqlite", | ||
// crypto: "crypto-browserify", | ||
// // This entrypoint mapping is done in @xmtp/user-preferences-bindings-wasm's "exports" in package.json | ||
// // but we don't want to enable unstable_enablePackageExports for now in metro.config.js | ||
// "@xmtp/user-preferences-bindings-wasm/web": | ||
// "@xmtp/user-preferences-bindings-wasm/dist/web/user_preferences_bindings_wasm", | ||
// "react-native-webview": "react-native-webview/src/index.ts", | ||
|
||
// Folder aliases | ||
'@': './', | ||
"@components": "./components", | ||
"@config": "./config", | ||
"@containers": "./containers", | ||
"@data": "./data", | ||
"@hooks": "./hooks", | ||
"@i18n": "./i18n", | ||
"@queries": "./queries", | ||
"@screens": "./screens", | ||
"@styles": "./styles", | ||
"@utils": "./utils", | ||
"@theme": "./theme", | ||
"@assets": "./assets", | ||
"@design-system": "./design-system", | ||
"@navigation": "./navigation", | ||
"@features": "./features", | ||
"@shared": "./features/shared", | ||
"@search": "./features/search", | ||
}, | ||
}, | ||
], | ||
"react-native-reanimated/plugin", | ||
], | ||
env: { | ||
production: { | ||
plugins: ["transform-remove-console", "react-native-paper/babel"], | ||
}, | ||
}, | ||
}; | ||
// // Folder aliases | ||
// '@': './', | ||
// "@components": "./components", | ||
// "@config": "./config", | ||
// "@containers": "./containers", | ||
// "@data": "./data", | ||
// "@hooks": "./hooks", | ||
// "@i18n": "./i18n", | ||
// "@queries": "./queries", | ||
// "@screens": "./screens", | ||
// "@styles": "./styles", | ||
// "@utils": "./utils", | ||
// "@theme": "./theme", | ||
// "@assets": "./assets", | ||
// "@design-system": "./design-system", | ||
// "@navigation": "./navigation", | ||
// "@features": "./features", | ||
// "@shared": "./features/shared", | ||
// "@search": "./features/search", | ||
// }, | ||
// }, | ||
// ], | ||
// "react-native-reanimated/plugin", | ||
// ], | ||
// env: { | ||
// production: { | ||
// plugins: ["transform-remove-console", "react-native-paper/babel"], | ||
// }, | ||
// }, | ||
// }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.