-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsyncpack.config.ts
More file actions
45 lines (43 loc) · 879 Bytes
/
Copy pathsyncpack.config.ts
File metadata and controls
45 lines (43 loc) · 879 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import type { RcFile } from 'syncpack'
const config: RcFile = {
strict: true,
versionGroups: [
{
label: 'Ignored',
dependencyTypes: ['local', 'peer'],
isIgnored: true,
},
{
label: 'Turborepo',
packages: ['yeger-monorepo'],
dependencies: ['turbo'],
isIgnored: true,
},
{
label: 'Ignored Nuxt .output',
packages: ['*-prod'],
isIgnored: true,
},
{
label: 'Local',
dependencies: ['$LOCAL'],
pinVersion: 'workspace:*',
},
{
label: 'Overrides',
dependencyTypes: ['pnpmOverrides'],
isIgnored: true,
},
{
label: 'External (Vite 7)',
packages: ['alpvara', 'formi'],
dependencies: ['vite'],
pinVersion: 'catalog:vite7',
},
{
label: 'External',
policy: 'catalog',
},
],
}
export default config