Skip to content

Commit b359cc4

Browse files
committed
fix typecheck and update renovate config
1 parent 0cbc3fc commit b359cc4

4 files changed

Lines changed: 18 additions & 6 deletions

File tree

bun.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/tanstack-start/nitro.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ export default defineConfig({
1313
modules: [
1414
evlog({
1515
env: { service: 'tanstack-start-example' },
16-
}) as NitroModuleSlot,
16+
}) as unknown as NitroModuleSlot,
1717
],
1818
})

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
"release": "turbo run build --filter='./packages/*' && changeset publish"
4848
},
4949
"devDependencies": {
50+
"zod": "^4.3.6",
51+
"zod-to-json-schema": "^3.25.2",
5052
"@ai-sdk/provider": "^3.0.8",
5153
"@changesets/changelog-github": "^0.6.0",
5254
"@changesets/cli": "^2.30.0",

renovate.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,18 @@
33
"extends": [
44
"github>nuxt/renovate-config-nuxt"
55
],
6-
"packageRules": [{
7-
"matchDepTypes": ["resolutions"],
8-
"enabled": false
9-
}],
6+
"schedule": ["before 3am on Monday"],
7+
"timezone": "UTC",
8+
"packageRules": [
9+
{
10+
"matchDepTypes": ["resolutions"],
11+
"enabled": false
12+
},
13+
{
14+
"description": "Same weekly window as the repo (nuxt preset uses a broader schedule for framework packages)",
15+
"matchPackagePatterns": ["^@nuxt/", "^nuxt"],
16+
"schedule": ["before 3am on Monday"]
17+
}
18+
],
1019
"postUpdateOptions": ["pnpmDedupe"]
1120
}

0 commit comments

Comments
 (0)