forked from cloudflare/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.syncpackrc.json
More file actions
83 lines (83 loc) · 2.01 KB
/
Copy path.syncpackrc.json
File metadata and controls
83 lines (83 loc) · 2.01 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
{
"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": "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 react router/remix templates",
"packages": ["remix-starter-template", "to-do-list-kv-template"],
"dependencies": ["wrangler"],
"pinVersion": "^3.114.4"
},
{
"label": "Set wrangler 4.21.x for everywhere",
"packages": ["*"],
"dependencies": ["wrangler"],
"pinVersion": "4.21.x"
},
{
"label": "Set vite to v6",
"packages": ["*"],
"dependencies": ["vite"],
"pinVersion": "^6.0.0"
}
]
}