Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/syncpack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
with:
node-version: 18
- run: npm install
- run: npm install -g syncpack
- run: syncpack list-mismatches
- run: npm install -g syncpack@14
- run: syncpack lint
16 changes: 9 additions & 7 deletions .syncpackrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"dependencyTypes": ["prod"],
"$schema": "./node_modules/syncpack/schema.json",
"versionGroups": [
{
"label": "Allow minor and patch version bumps",
"dependencies": ["**"],
"packages": ["**"],
"sameMinorNew": true,
"dependencyTypes": ["prod"]
"label": "Allow minor and patch version bumps in dependencies",
"dependencyTypes": ["prod"],
"policy": "sameMinor"
},
{
"label": "Ignore all other dependency types",
"isIgnored": true
}
]
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
},
"scripts": {
"lint-fix": "ci/lint-fix.sh",
"syncpack-fix": "syncpack fix-mismatches"
"syncpack-fix": "syncpack fix"
},
"devDependencies": {
"syncpack": "^13.0.4"
"syncpack": "^14.0.2"
}
}
Loading