ci: add renovate configuration (#28121)

This will be important to keep the CLI / Framework changes in sync and not to have size regressions.

TOOL-582 #resolve

PR Close #28121
This commit is contained in:
Alan Agius 2019-01-14 09:31:49 +01:00 committed by Igor Minar
parent 980bb52d36
commit 55b144bdf5
1 changed files with 49 additions and 0 deletions

49
renovate.json Normal file
View File

@ -0,0 +1,49 @@
{
"pinVersions": false,
"semanticCommits": true,
"semanticPrefix": "build",
"commitMessage": "{{semanticPrefix}} update {{depName}} to version {{newVersion}}",
"separateMajorMinor": false,
"labels": [
"PR target: master-only",
"comp: build & ci"
],
"baseBranches": [
"master"
],
"ignoreDeps": [
"source-map",
"@types/node"
],
"packageFiles": [
"integration/cli-hello-world-ivy/package.json",
"integration/cli-hello-world/package.json"
],
"major": {
"devDependencies": {
"enabled": false
}
},
"packageRules": [
{
"packagePatterns": [
"^@angular.*"
],
"groupName": "angular",
"pinVersions": false
},
{
"packagePatterns": [
"^@bazel\/.*"
],
"groupName": "bazel",
"pinVersions": false
},
{
"packageNames": [
"typescript"
],
"updateTypes": "patch"
}
]
}