forked from AmadeusITGroup/AgnosUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.syncpackrc.js
33 lines (33 loc) · 859 Bytes
/
.syncpackrc.js
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
/** @type import("syncpack").RcFile */
module.exports = {
source: ['package.json', '*/package.json', '*/{lib,headless}/package.json', 'demo/src/lib/stackblitz/*/package.json'],
indent: '\t',
semverRange: '^',
versionGroups: [
{
label: "Use '*' under 'peerDependencies' everywhere",
packages: ['**'],
dependencies: ['**'],
dependencyTypes: ['peer'],
pinVersion: '*',
},
],
semverGroups: [
{
range: '~',
dependencies: ['typescript', 'zone.js', '@angular/*', '@angular-eslint/*', '@angular-devkit/build-angular', 'ng-packagr'],
packages: ['**'],
},
{
range: '',
dependencies: ['@amadeus-it-group/tansu', '@agnos-ui/*'],
packages: ['**'],
},
{
label: 'Use glob 10.3.6 until https://github.com/isaacs/node-glob/issues/557 is solved',
range: '',
packages: ['**'],
dependencies: ['glob'],
},
],
};