mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
moved files outside of /app
This commit is contained in:
@@ -12,7 +12,7 @@ module.exports = withTurborepoManagedCache(
|
|||||||
isCSSEnabled: true,
|
isCSSEnabled: true,
|
||||||
}),
|
}),
|
||||||
{
|
{
|
||||||
input: "./src/app/styles/global.css",
|
input: "./src/styles/global.css",
|
||||||
configPath: "./tailwind.config.ts",
|
configPath: "./tailwind.config.ts",
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@@ -12,7 +12,7 @@ import {
|
|||||||
|
|
||||||
import Colors from "@movie-web/tailwind-config/colors";
|
import Colors from "@movie-web/tailwind-config/colors";
|
||||||
|
|
||||||
import "./styles/global.css";
|
import "../styles/global.css";
|
||||||
|
|
||||||
export {
|
export {
|
||||||
// Catch any errors thrown by the Layout component.
|
// Catch any errors thrown by the Layout component.
|
||||||
|
@@ -13,8 +13,8 @@ import {
|
|||||||
} from "@movie-web/provider-utils";
|
} from "@movie-web/provider-utils";
|
||||||
import { fetchMediaDetails } from "@movie-web/tmdb";
|
import { fetchMediaDetails } from "@movie-web/tmdb";
|
||||||
|
|
||||||
import type { ItemData } from "./components/item/item";
|
import type { ItemData } from "~/components/item/item";
|
||||||
import { usePlayer } from "./hooks/usePlayer";
|
import { usePlayer } from "../hooks/usePlayer";
|
||||||
|
|
||||||
export default function VideoPlayerWrapper() {
|
export default function VideoPlayerWrapper() {
|
||||||
const params = useLocalSearchParams();
|
const params = useLocalSearchParams();
|
||||||
|
@@ -2,7 +2,7 @@ import type { TextProps } from "react-native";
|
|||||||
import { Text as RNText } from "react-native";
|
import { Text as RNText } from "react-native";
|
||||||
import { cva } from "class-variance-authority";
|
import { cva } from "class-variance-authority";
|
||||||
|
|
||||||
import { cn } from "~/app/lib/utils";
|
import { cn } from "~/lib/utils";
|
||||||
|
|
||||||
const textVariants = cva("text-white");
|
const textVariants = cva("text-white");
|
||||||
|
|
@@ -5,7 +5,7 @@
|
|||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"~/*": ["./src/*"],
|
"~/*": ["./src/*"],
|
||||||
"~/components/*": ["./src/app/components/*"],
|
"~/components/*": ["./src/components/*"],
|
||||||
},
|
},
|
||||||
"jsx": "react-native",
|
"jsx": "react-native",
|
||||||
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
|
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
|
||||||
|
Reference in New Issue
Block a user