refactor: simplify renovate configuration and revert kotlin (#933)

Co-authored-by: retardgerman <78982850+retardgerman@users.noreply.github.com>
This commit is contained in:
Gauvain
2025-08-14 16:07:49 +02:00
committed by GitHub
parent 3013251285
commit 781d199546
2 changed files with 3 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ group = 'expo.modules.vlcplayer'
version = '0.6.0' version = '0.6.0'
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle") def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
def kotlinVersion = findProperty('android.kotlinVersion') ?: '2.0.21' def kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.25'
apply from: expoModulesCorePlugin apply from: expoModulesCorePlugin

View File

@@ -15,17 +15,13 @@
], ],
"addLabels": ["dependencies"], "addLabels": ["dependencies"],
"rebaseWhen": "conflicted", "rebaseWhen": "conflicted",
"ignorePaths": ["**/node_modules/**", "**/bower_components/**"], "ignorePaths": ["**/bower_components/**"],
"lockFileMaintenance": { "lockFileMaintenance": {
"enabled": true, "enabled": true,
"groupName": "lockfiles", "groupName": "lockfiles",
"schedule": ["every month"] "schedule": ["every month"]
}, },
"packageRules": [ "packageRules": [
{
"matchDepTypes": ["dependencies", "devDependencies"],
"enabled": true
},
{ {
"description": "Add 'ci' and 'github-actions' labels to GitHub Action update PRs", "description": "Add 'ci' and 'github-actions' labels to GitHub Action update PRs",
"matchManagers": ["github-actions"], "matchManagers": ["github-actions"],
@@ -49,6 +45,5 @@
"matchPackagePatterns": ["expo", "react-native"], "matchPackagePatterns": ["expo", "react-native"],
"addLabels": ["expo", "react-native"] "addLabels": ["expo", "react-native"]
} }
], ]
"enabledManagers": ["bun"]
} }