Add renovate config to avoid pinning `jetpack-autoloader` package (https://github.com/woocommerce/woocommerce-blocks/pull/1632)

* Switch jetpack-autoloader in package.json to use a range

* Update rangeStrategy for jetpack autoloader in renovate config

* Switch to bump range strategy
This commit is contained in:
Mike Jolley 2020-01-24 16:50:06 +00:00 committed by GitHub
parent 2014e6f1e2
commit 00c700655f
2 changed files with 8 additions and 2 deletions

View File

@ -13,7 +13,7 @@
"minimum-stability": "dev",
"require": {
"composer/installers": "1.7.0",
"automattic/jetpack-autoloader": "1.3.2"
"automattic/jetpack-autoloader": "^1.2.0"
},
"require-dev": {
"phpunit/phpunit": "6.5.14",

View File

@ -5,5 +5,11 @@
"schedule": [ "before 3am on wednesday" ],
"composer": {
"enabled": false
}
},
"packageRules": [
{
"packageNames": [ "automattic/jetpack-autoloader" ],
"rangeStrategy": "bump"
}
]
}