moved files outside of /app

This commit is contained in:
Jorrin
2024-02-05 21:03:26 +01:00
parent eeb0b921dc
commit eef7565106
12 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ module.exports = withTurborepoManagedCache(
isCSSEnabled: true,
}),
{
input: "./src/app/styles/global.css",
input: "./src/styles/global.css",
configPath: "./tailwind.config.ts",
},
),

View File

@@ -12,7 +12,7 @@ import {
import Colors from "@movie-web/tailwind-config/colors";
import "./styles/global.css";
import "../styles/global.css";
export {
// Catch any errors thrown by the Layout component.

View File

@@ -13,8 +13,8 @@ import {
} from "@movie-web/provider-utils";
import { fetchMediaDetails } from "@movie-web/tmdb";
import type { ItemData } from "./components/item/item";
import { usePlayer } from "./hooks/usePlayer";
import type { ItemData } from "~/components/item/item";
import { usePlayer } from "../hooks/usePlayer";
export default function VideoPlayerWrapper() {
const params = useLocalSearchParams();

View File

@@ -2,7 +2,7 @@ import type { TextProps } from "react-native";
import { Text as RNText } from "react-native";
import { cva } from "class-variance-authority";
import { cn } from "~/app/lib/utils";
import { cn } from "~/lib/utils";
const textVariants = cva("text-white");

View File

@@ -5,7 +5,7 @@
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"~/components/*": ["./src/app/components/*"],
"~/components/*": ["./src/components/*"],
},
"jsx": "react-native",
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",