Ghost/ghost/admin/renovate.json
Kevin Ansfield ab2dd14677 Pinned all postcss dependencies to v7 (#1830)
no issue

- due to various levels of sub-dependency support across our postcss dependencies we'd ended up with three different versions of postcss installed (6, 7, and 8)
- pinned our dependencies to versions that all use postcss@^7
- we can't upgrade to postcss@8 because we make heavy use of `color-mod` which is no longer in the CSS spec and so the dependency providing it has not been updated
- switched from `postcss-easy-import` to `postcss-import` to drop the postcss@6 sub dependency (we weren't using any of the features that postcss-easy-import added over postcss-import)
- initial tests show CSS compilation times to have roughly halved
- disabled renovate for css dependencies to reduce noise for updates we can't merge
2021-01-19 09:25:05 +00:00

31 lines
644 B
JSON

{
"extends": [
"@tryghost:quietJS"
],
"ignoreDeps": [
"ember-drag-drop",
"normalize.css",
"validator",
"codemirror"
],
"ignorePaths": ["lib/koenig-editor/package.json"],
"packageRules": [
{
"groupName": "ember-basic-dropdown addons",
"packagePatterns": ["^ember-basic", "^ember-power"]
},
{
"groupName": "ember core",
"packageNames": ["ember-source", "ember-cli", "ember-data"]
},
{
"groupName": "ember testing",
"packageNames": ["ember-mocha", "ember-exam", "testem"]
},
{
"extends": "@tryghost:groupCSS",
"enabled": false
}
]
}