forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
78 lines (78 loc) · 2.5 KB
/
renovate.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"extends": ["config:base"],
"dependencyDashboardApproval": true,
"labels": ["PR: Dependency ⬆️", "repo automation 🤖"],
"postUpdateOptions": ["yarnDedupeHighest"],
"regexManagers": [
{
"fileMatch": ["^Makefile$"],
"matchStrings": ["TEST262_COMMIT = (?<currentDigest>.*)\\n"],
"datasourceTemplate": "git-refs",
"depNameTemplate": "tests-test262",
"lookupNameTemplate": "https://github.com/tc39/test262.git",
"currentValueTemplate": "main"
},
{
"fileMatch": ["^Makefile$"],
"matchStrings": ["FLOW_COMMIT = (?<currentDigest>.*)\\n"],
"datasourceTemplate": "git-refs",
"depNameTemplate": "tests-flow",
"lookupNameTemplate": "https://github.com/facebook/flow.git",
"currentValueTemplate": "master"
},
{
"fileMatch": ["^Makefile$"],
"matchStrings": ["TYPESCRIPT_COMMIT = (?<currentDigest>.*)\\n"],
"datasourceTemplate": "git-refs",
"depNameTemplate": "tests-typescript",
"lookupNameTemplate": "https://github.com/Microsoft/TypeScript.git",
"currentValueTemplate": "main"
},
{
"fileMatch": ["^Makefile$"],
"matchStrings": ["COMPAT_TABLE_COMMIT=(?<currentDigest>.*)\\n"],
"datasourceTemplate": "git-refs",
"depNameTemplate": "compat-table",
"lookupNameTemplate": "https://github.com/kangax/compat-table.git",
"currentValueTemplate": "gh-pages"
}
],
"packageRules": [
{
"matchDepTypes": ["dependencies", "devDependencies"],
"rangeStrategy": "replace",
"ignoreDeps": [
"@babel/core-7.12",
"@babel/helper-validator-identifier-baseline"
]
},
{
"matchPackagePatterns": ["^eslint"],
"groupName": "eslint packages"
},
{
"matchPackagePatterns": ["^rollup", "^@rollup"],
"groupName": "rollup packages"
},
{
"matchPackagePatterns": ["^gulp"],
"groupName": "gulp packages"
},
{
"matchPackageNames": ["tests-test262", "tests-flow", "tests-typescript"],
"groupName": "third-party parser tests",
"schedule": ["before 00:05 on Friday"],
"postUpgradeTasks": {
"commands": [
"yarn install --immutable --mode=skip-build",
"yarn gulp build-rollup",
"make test-test262-update-allowlist",
"make test-flow-update-allowlist",
"make test-typescript-update-allowlist"
],
"fileFilters": ["scripts/parser-tests/*/allowlist.txt"],
"executionMode": "branch"
}
}
]
}