mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 15:33:26 +00:00
chore: cleanup n stuffs
This commit is contained in:
2
.github/renovate.json
vendored
2
.github/renovate.json
vendored
@@ -4,7 +4,7 @@
|
|||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"matchPackagePatterns": ["^@movie-web/"],
|
"matchPackagePatterns": ["^@movie-web/"],
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"updateInternalDeps": true,
|
"updateInternalDeps": true,
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
import * as Haptics from "expo-haptics";
|
||||||
import { Text, useTheme, View } from "tamagui";
|
import { Text, useTheme, View } from "tamagui";
|
||||||
|
|
||||||
import { MovieWebSvg } from "./Icon";
|
import { MovieWebSvg } from "./Icon";
|
||||||
@@ -19,6 +20,7 @@ export function BrandPill() {
|
|||||||
opacity: 1,
|
opacity: 1,
|
||||||
scale: 1.05,
|
scale: 1.05,
|
||||||
}}
|
}}
|
||||||
|
onLongPress={() => Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy)}
|
||||||
>
|
>
|
||||||
<MovieWebSvg
|
<MovieWebSvg
|
||||||
fillColor={theme.tabBarIconFocused.val}
|
fillColor={theme.tabBarIconFocused.val}
|
||||||
@@ -26,6 +28,7 @@ export function BrandPill() {
|
|||||||
height={12}
|
height={12}
|
||||||
/>
|
/>
|
||||||
<Text fontSize="$4" fontWeight="$bold" paddingRight={5} paddingLeft={3}>
|
<Text fontSize="$4" fontWeight="$bold" paddingRight={5} paddingLeft={3}>
|
||||||
|
{/* padding might need adjusting */}
|
||||||
movie-web
|
movie-web
|
||||||
</Text>
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import { Linking } from "react-native";
|
import { Linking } from "react-native";
|
||||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||||
|
import * as Haptics from "expo-haptics";
|
||||||
import { FontAwesome6, MaterialIcons } from "@expo/vector-icons";
|
import { FontAwesome6, MaterialIcons } from "@expo/vector-icons";
|
||||||
import { Circle, View } from "tamagui";
|
import { Circle, View } from "tamagui";
|
||||||
|
|
||||||
@@ -28,6 +29,9 @@ export function Header() {
|
|||||||
onPress={async () => {
|
onPress={async () => {
|
||||||
await Linking.openURL(DISCORD_LINK);
|
await Linking.openURL(DISCORD_LINK);
|
||||||
}}
|
}}
|
||||||
|
onLongPress={() =>
|
||||||
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy)
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<MaterialIcons name="discord" size={20} color="white" />
|
<MaterialIcons name="discord" size={20} color="white" />
|
||||||
</Circle>
|
</Circle>
|
||||||
@@ -41,6 +45,9 @@ export function Header() {
|
|||||||
onPress={async () => {
|
onPress={async () => {
|
||||||
await Linking.openURL(GITHUB_LINK);
|
await Linking.openURL(GITHUB_LINK);
|
||||||
}}
|
}}
|
||||||
|
onLongPress={() =>
|
||||||
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy)
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<FontAwesome6 name="github" size={20} color="white" />
|
<FontAwesome6 name="github" size={20} color="white" />
|
||||||
</Circle>
|
</Circle>
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "npm"
|
|
||||||
directory: "/packages/provider-utils"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
allow:
|
|
||||||
- dependency-name: "@movie-web/providers"
|
|
632
pnpm-lock.yaml
generated
632
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user