-
Notifications
You must be signed in to change notification settings - Fork 961
Expand file tree
/
Copy path.syncpackrc.json
More file actions
106 lines (106 loc) · 2.47 KB
/
.syncpackrc.json
File metadata and controls
106 lines (106 loc) · 2.47 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"dependencyTypes": ["dev", "prod"],
"semverGroups": [
{
"label": "don't pin @cloudflare/workers-types",
"dependencies": ["@cloudflare/workers-types"],
"packages": ["**"],
"range": "^"
},
{
"label": "pin all deps",
"dependencies": ["**"],
"packages": ["**"],
"range": ""
}
],
"versionGroups": [
{
"label": "Pin Zod 3.x for chanfana template due to chanfana peer dep",
"packages": ["chanfana-openapi-template"],
"dependencies": ["zod"],
"pinVersion": "3.25.67"
},
{
"label": "Pin TypeScript 5.8.3 for templates using typescript-eslint due to peer dep",
"packages": [
"remix-starter-template",
"to-do-list-kv-template",
"vite-react-template"
],
"dependencies": ["typescript"],
"pinVersion": "5.8.3"
},
{
"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"
],
"pinVersion": "^19.0.0"
},
{
"label": "Keep React 18 for other templates",
"packages": [
"durable-chat-template",
"multiplayer-globe-template",
"remix-starter-template",
"to-do-list-kv-template"
],
"dependencies": [
"react",
"react-dom",
"@types/react",
"@types/react-dom"
],
"pinVersion": "^18.0.0"
},
{
"label": "Allow tailwind 3.x for some templates",
"packages": [
"saas-admin-template",
"to-do-list-kv-template",
"remix-starter-template"
],
"dependencies": ["tailwindcss"],
"pinVersion": "^3.4.0"
},
{
"label": "Allow Wrangler 3.x for Remix templates due to @remix-run/dev peer dep",
"packages": ["remix-starter-template", "to-do-list-kv-template"],
"dependencies": ["wrangler"],
"pinVersion": "^3.114.4"
},
{
"label": "Pin vitest 3.x for templates using @cloudflare/vitest-pool-workers",
"packages": [
"chanfana-openapi-template",
"d1-starter-sessions-api-template",
"llm-chat-app-template",
"mysql-hyperdrive-template",
"postgres-hyperdrive-template",
"to-do-list-kv-template"
],
"dependencies": ["vitest"],
"pinVersion": "3.2.4"
},
{
"label": "Set vite to v6",
"packages": ["*"],
"dependencies": ["vite"],
"pinVersion": "^6.0.0"
}
]
}