-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy path.ncurc.cjs
More file actions
36 lines (31 loc) · 872 Bytes
/
.ncurc.cjs
File metadata and controls
36 lines (31 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module.exports = {
reject: [
// >=27.4.0 has ESM/CJS incompatibility that breaks Vercel runtime
"jsdom",
// Staying on Tailwind v3 — v4 has significant breaking changes
"tailwindcss",
"@tailwindcss/forms",
"@tailwindcss/typography",
"@headlessui/tailwindcss",
"tailwind-merge",
"tailwindcss-animate",
"postcss",
"autoprefixer",
// Major upgrades have heavy breaking changes
"@tiptap/extension-mention",
"@tiptap/extension-placeholder",
"@tiptap/pm",
"@tiptap/react",
"@tiptap/starter-kit",
"@tiptap/suggestion",
"tiptap-markdown",
"react-resizable-panels",
"recharts",
"@chronark/zod-bird",
// v9+ breaks the shadcn/ui date picker component
"react-day-picker",
// v4 has breaking changes with Tinybird and other integrations
"zod",
"@types/node",
],
};