forked from cmfcmf/docusaurus-search-local
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.syncpackrc
30 lines (30 loc) · 956 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
30
{
"versionGroups": [
{
"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.3.1"
},
{
"label": "The Docusaurus peer dependencies must all have the lowest version supported by the plugin.",
"packages": ["**"],
"dependencies": ["@docusaurus/**"],
"dependencyTypes": ["peer"],
"pinVersion": "^2.0.0"
},
{
"label": "All dependencies should follow the versions of the search plugin",
"packages": ["**"],
"dependencies": ["**"],
"snapTo": ["@cmfcmf/docusaurus-search-local"]
}
]
}