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
transform[stderr]: Tamagui failed to require() "../createElement/index.cjs" | |
transform[stderr]: | |
transform[stderr]: Cannot read properties of undefined (reading 'default') | |
transform[stderr]: TypeError: Cannot read properties of undefined (reading 'default') | |
transform[stderr]: at Object.View (/Users/peter/Projects/backpack/node_modules/@tamagui/react-native-web-lite/dist/cjs/index.cjs:86:27) | |
transform[stderr]: at Object.get [as View] (/Users/peter/Projects/backpack/node_modules/@tamagui/react-native-web-lite/dist/cjs/index.cjs:15:22) | |
transform[stderr]: at getBaseViews (/Users/peter/Projects/backpack/node_modules/@tamagui/core/dist/native.js:12160:227) | |
transform[stderr]: at Object.<anonymous> (/Users/peter/Projects/backpack/node_modules/@tamagui/core/dist/native.js:12335:16) | |
transform[stderr]: at Module._compile (node:internal/modules/cjs/loader:1358:14) | |
transform[stderr]: at Module._compile (/Users/peter/Projects/backpack/node_modules/@tamagui/static/node_modules/esbuild-register/dist |
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
> Configure project :react-native-bignumber | |
BigNumber: node_modules/ found at: /Users/peter/Projects/backpack-sdk52/packages/app-mobile/node_modules | |
> Configure project :react-native-reanimated | |
Android gradle plugin: 8.6.0 | |
Gradle: 8.10.2 | |
> Task :expo-camera:compileDebugKotlin | |
w: file:///Users/peter/Projects/backpack-sdk52/packages/app-mobile/node_modules/expo-camera/android/src/main/java/expo/modules/camera/ExpoCameraView.kt:592:73 'getter for defaultDisplay: Display!' is deprecated. Deprecated in Java | |
w: file:///Users/peter/Projects/backpack-sdk52/packages/app-mobile/node_modules/expo-camera/android/src/main/java/expo/modules/camera/tasks/ResolveTakenPicture.kt:146:32 Type mismatch: inferred type is String? but String was expected |
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
diff --git a/node_modules/react-native-bignumber/android/CMakeLists.txt b/node_modules/react-native-bignumber/android/CMakeLists.txt | |
index b08d42b..2b86481 100644 | |
--- a/node_modules/react-native-bignumber/android/CMakeLists.txt | |
+++ b/node_modules/react-native-bignumber/android/CMakeLists.txt | |
@@ -1,5 +1,5 @@ | |
project("react-native-bignumber") | |
-cmake_minimum_required(VERSION 3.9.0) | |
+cmake_minimum_required(VERSION 3.10.2) | |
set(PACKAGE_NAME "reactnativeBigNumber") |
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
export const parser = "tsx"; | |
const importName = "A"; | |
const importPath = "B"; | |
const updatedImportPath = "C"; | |
export default function transform(file, { jscodeshift: j }, options) { | |
const source = j(file.source); // Create an AST of the given file | |
let hasChanged = false; // Flag to track if any changes have been made |
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
const subtitle = | |
serverPublicKeys.length === 1 | |
? t('cant_find_recovery_phrase2', { | |
publicKey: formatWalletAddress(serverPublicKeys[0].publicKey), | |
}) | |
: t('cant_find_recovery_phrase'); |
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
const SLACK_WEBHOOK_URL = "https://hooks.slack.com/services/XXX/YYY/ZZZZZ"; | |
async function sendSlackRequest({ text, blocks }) { | |
const postToSlack = await fetch(SLACK_WEBHOOK_URL, { | |
body: JSON.stringify({ text, blocks }), | |
method: "POST", | |
headers: { "Content-Type": "application/json" }, | |
}); | |
} |
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
import { useState } from 'react'; | |
import { | |
Text, | |
View, | |
StyleSheet, | |
SectionList, | |
SafeAreaView, | |
StatusBar, | |
Pressable, | |
} from 'react-native'; |
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
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
function hello() { | |
console.log("hi"); | |
} |
NewerOlder