-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathrenovate.json
More file actions
101 lines (101 loc) · 2.41 KB
/
Copy pathrenovate.json
File metadata and controls
101 lines (101 loc) · 2.41 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"constraints": {
"npm": "11.15.0"
},
"dependencyDashboard": true,
"configMigration": true,
"rangeStrategy": "bump",
"prHourlyLimit": 0,
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch",
"lockFileMaintenance",
"pin"
],
"groupName": "minor/patch updates",
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
{
"matchPackageNames": [
"node",
"npm",
"fsevents",
"core-js"
],
"enabled": false
},
{
"matchPackageNames": [
"@napi-rs/cli"
],
"enabled": false,
"description": "napi-rs no longer runs on Node 18 as of v3.5.0"
},
{
"matchPackageNames": [
"wasm-pack"
],
"allowedVersions": "!/^0\\.14\\.0$/",
"description": "wasm-pack 0.14.0 on npm references drager/wasm-pack (a fork) instead of wasm-bindgen/wasm-pack in its binary.js, causing a 404 when downloading the binary. Pin until fixed. See https://github.com/wasm-bindgen/wasm-pack/issues/1577"
},
{
"matchPackageNames": [
"stacker"
],
"allowedVersions": "<=0.1.23",
"description": "stacker 0.1.24+ requires windows-sys >=0.60 which uses windows-link instead of windows-targets, breaking the x86_64-pc-windows-gnu (MinGW) build. Pin until upstream fixes this."
},
{
"matchPackageNames": [
"lru-cache"
],
"enabled": false,
"description": "this restriction should not be updated by renovate."
},
{
"matchDatasources": [
"rust-version"
],
"enabled": false,
"description": "Rust toolchain is managed manually."
},
{
"matchPackageNames": [
"@inquirer/prompts",
"@rollup/plugin-terser",
"@types/node",
"concurrently",
"mocha",
"react",
"react-dom",
"typescript",
"vite",
"yargs-parser"
],
"matchUpdateTypes": [
"major"
],
"enabled": false
}
],
"pinDigests": true,
"automerge": false,
"internalChecksFilter": "strict",
"lockFileMaintenance": {
"enabled": true
},
"minimumReleaseAge": "3 days",
"schedule": [
"* 18-23 * * 4",
"* 0-5 * * 5"
],
"automergeStrategy": "squash"
}