Skip to content

Commit

Permalink
chore: add renovate automerge of minors and patchs
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Aug 30, 2024
1 parent 02bf659 commit 2ec13bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
]
}
3 changes: 2 additions & 1 deletion src/components/TheExperience.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<script setup lang="ts">
import type { TresObject } from '@tresjs/core'
import { useLoop } from '@tresjs/core'
import { shallowRef } from 'vue'
import { OrbitControls } from '@tresjs/cientos'
const { onBeforeRender } = useLoop()
const boxRef = shallowRef(null)
const boxRef = shallowRef<TresObject | null>(null)
onBeforeRender(({ elapsed }) => {
if (boxRef.value) {
Expand Down

0 comments on commit 2ec13bf

Please sign in to comment.