-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy path.syncpackrc
More file actions
25 lines (25 loc) · 843 Bytes
/
.syncpackrc
File metadata and controls
25 lines (25 loc) · 843 Bytes
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
{
"source": ["packages/**/package.json", "sdk/package.json"],
"versionGroups": [
{
"label": "Use workspace protocol when developing local packages",
"dependencies": ["$LOCAL"],
"dependencyTypes": ["prod", "dev"],
"pinVersion": "workspace:*"
},
{
"label": "Allow flexible peer dependency ranges for auth-next packages and sdk",
"dependencies": ["next", "next-auth", "react"],
"dependencyTypes": ["peer"],
"packages": ["@imtbl/auth-next-server", "@imtbl/auth-next-client", "@imtbl/sdk"],
"isIgnored": true
},
{
"label": "Allow Next.js version flexibility in auth-next devDependencies",
"dependencies": ["next"],
"dependencyTypes": ["dev"],
"packages": ["@imtbl/auth-next-server", "@imtbl/auth-next-client"],
"isIgnored": true
}
]
}