Skip to content

Commit 663b643

Browse files
renovate[bot]devin-ai-integration[bot]andyjakubowskijamesbhobbs
authored
chore: Configure Renovate (#32)
* Add renovate.json * chore: Add comprehensive Renovate configuration * Add npmrc field to renovate.json Signed-off-by: Andy Jakubowski <hello@andyjakubowski.com> * Formatting Signed-off-by: Andy Jakubowski <hello@andyjakubowski.com> --------- Signed-off-by: Andy Jakubowski <hello@andyjakubowski.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Andy Jakubowski <hello@andyjakubowski.com> Co-authored-by: James Hobbs <15235276+jamesbhobbs@users.noreply.github.com>
1 parent 4546946 commit 663b643

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

renovate.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"configMigration": true,
4+
"enabledManagers": ["npm", "nvm", "github-actions"],
5+
"github-actions": {
6+
"enabled": true,
7+
"pinDigests": true
8+
},
9+
"extends": ["config:recommended"],
10+
"ignorePaths": ["**/dist/**", "**/node_modules/**", "**/tmp/**", "**/out/**"],
11+
"docker-compose": {
12+
"enabled": false
13+
},
14+
"dockerfile": {
15+
"enabled": false
16+
},
17+
"meteor": {
18+
"enabled": false
19+
},
20+
"npm": {
21+
"minimumReleaseAge": "3 days",
22+
"enabled": true
23+
},
24+
"npmrc": "@deepnote:registry=https://npm.pkg.github.com\nalways-auth=true\n",
25+
"ignoreDeps": [
26+
"@apollo/client",
27+
"@chakra-ui/react",
28+
"@jupyterlab/coreutils",
29+
"@jupyterlab/nbformat",
30+
"@jupyterlab/services",
31+
"@jupyterlab/toc",
32+
"@kubernetes/client-node",
33+
"@types/react",
34+
"monaco-editor",
35+
"node-fetch",
36+
"wait-on",
37+
"@testing-library/user-event",
38+
"react-wrap-balancer"
39+
],
40+
"labels": ["renovate"],
41+
"packageRules": [
42+
{
43+
"description": "Group GitHub Actions",
44+
"groupName": "GitHub Actions",
45+
"groupSlug": "github-actions",
46+
"matchManagers": ["github-actions"]
47+
},
48+
{
49+
"matchDepTypes": ["devDependencies"],
50+
"groupName": "devDependencies",
51+
"groupSlug": "dev-dependencies",
52+
"enabled": true,
53+
"schedule": ["every weekend"]
54+
},
55+
{
56+
"groupName": "definitelyTyped",
57+
"matchPackageNames": ["@types/{/,}**"]
58+
}
59+
]
60+
}

0 commit comments

Comments
 (0)