-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
.syncpackrc
29 lines (29 loc) · 900 Bytes
/
.syncpackrc
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
{
"versionGroups": [
{
"label": "All dependencies should use the same Node.js types.",
"dependencies": ["@types/node"],
"pinVersion": "^18"
},
{
"label": "Example Docs must always use the local version of the search plugin",
"packages": ["example-docs"],
"dependencies": ["@cmfcmf/docusaurus-search-local"],
"pinVersion": "*"
},
{
"label": "The Docusaurus dev dependencies must all have the highest version supported by the plugin.",
"packages": ["**"],
"dependencies": ["@docusaurus/**"],
"dependencyTypes": ["dev"],
"pinVersion": "^2.4.3"
},
{
"label": "The Docusaurus peer dependencies must all have the lowest version supported by the plugin.",
"packages": ["**"],
"dependencies": ["@docusaurus/**"],
"dependencyTypes": ["peer"],
"pinVersion": "^2.0.0"
}
]
}