-
Notifications
You must be signed in to change notification settings - Fork 646
/
Copy path.syncpackrc.json
56 lines (56 loc) · 1.33 KB
/
.syncpackrc.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"dependencyTypes": ["dev", "prod"],
"semverGroups": [
{
"label": "pin all deps",
"dependencies": ["**"],
"packages": ["**"],
"range": ""
}
],
"versionGroups": [
{
"label": "Next.js starter uses deprecated eslint version to prevent peer dependency conflict",
"packages": ["next-starter-template"],
"dependencies": ["eslint"],
"pinVersion": "8.56.0"
},
{
"label": "Allow vite 5 for Remix templates",
"packages": ["remix-starter-template", "to-do-list-kv-template"],
"dependencies": ["vite"],
"pinVersion": "5.4.14"
},
{
"label": "Allow React 19 for specific templates",
"packages": [
"react-router-starter-template",
"saas-admin-starter-template"
],
"dependencies": [
"react",
"react-dom",
"@types/react",
"@types/react-dom"
],
"range": "^19.0.0"
},
{
"label": "Keep React 18 for other templates",
"packages": [
"durable-chat-template",
"multiplayer-globe-template",
"next-starter-template",
"remix-starter-template",
"to-do-list-kv-template"
],
"dependencies": [
"react",
"react-dom",
"@types/react",
"@types/react-dom"
],
"range": "^18.0.0"
}
]
}