diff --git a/Dockerfile b/Dockerfile index 760e3b8d..3cb711cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ FROM base as deps WORKDIR /app COPY package.json pnpm-lock.yaml prisma ./ +COPY patches ./patches ENV PUPPETEER_SKIP_DOWNLOAD=true diff --git a/package.json b/package.json index d1592d5b..72a2191e 100644 --- a/package.json +++ b/package.json @@ -219,4 +219,4 @@ "tailwindcss-variable-colors@0.0.2": "patches/tailwindcss-variable-colors@0.0.2.patch" } } -} \ No newline at end of file +} diff --git a/packages/shiki/package.json b/packages/shiki/package.json index 93269cbd..857143a1 100644 --- a/packages/shiki/package.json +++ b/packages/shiki/package.json @@ -6,4 +6,4 @@ "default": "./shiki.client.tsx" } } -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index ca4d66ba..7460ebee 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,6 @@ { "compilerOptions": { - "lib": [ - "DOM", - "DOM.Iterable", - "esnext" - ], + "lib": ["DOM", "DOM.Iterable", "esnext"], "isolatedModules": true, "esModuleInterop": true, "jsx": "preserve", @@ -14,9 +10,7 @@ "strict": true, "baseUrl": ".", "paths": { - "~/*": [ - "./src/*" - ] + "~/*": ["./src/*"] }, "noEmit": true, "forceConsistentCasingInFileNames": true, @@ -24,9 +18,7 @@ "skipLibCheck": true, "incremental": true, "module": "esnext", - "typeRoots": [ - "./types" - ], + "typeRoots": ["./types"], "plugins": [ { "name": "next" @@ -40,7 +32,5 @@ ".next/types/**/*.ts", "packages/**/*" ], - "exclude": [ - "node_modules" - ] -} \ No newline at end of file + "exclude": ["node_modules"] +}