Skip to content

Commit f8a20c0

Browse files
feat(deps): upgrade upstream dependencies (#947)
Automated daily upgrade of upstream dependencies: - rolldown (latest tag) - rolldown-vite (latest tag) - vitest (latest npm version) - tsdown (latest npm version) Build status: success <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Primarily bumps build/lint tool dependencies and lockfile entries, with minimal impact on runtime behavior. Risk is limited to potential CI/build or packaging regressions from the upgraded toolchain versions. > > **Overview** > Upgrades the toolchain dependencies, including `tsdown` to `0.21.3` (and matching `@tsdown/css`/`@tsdown/exe` peer/bundled versions), plus related updates in `pnpm-lock.yaml`. > > Tweaks TypeScript ergonomics in templates/docs by adding a `*.css` module declaration for VitePress and including Node typings (`"types": ["node"]`) in the CLI generator `tsconfig.json`. Also bumps `oxlint-tsgolint` and `tinyexec` versions via workspace catalog/lockfile updates. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit fd6f74f. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1d5f337 commit f8a20c0

File tree

5 files changed

+84
-80
lines changed

5 files changed

+84
-80
lines changed

docs/.vitepress/env.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ declare module '*.vue' {
55
export default component;
66
}
77

8+
// CSS module declarations
9+
declare module '*.css' {}
10+
811
// Asset module declarations
912
declare module '*.riv' {
1013
const src: string;

packages/cli/templates/generator/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"module": "nodenext",
55
"moduleResolution": "nodenext",
66
"noEmit": true,
7-
"resolveJsonModule": true
7+
"resolveJsonModule": true,
8+
"types": ["node"]
89
}
910
}

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@
136136
},
137137
"peerDependencies": {
138138
"@arethetypeswrong/core": "^0.18.1",
139-
"@tsdown/css": "0.21.2",
140-
"@tsdown/exe": "0.21.2",
139+
"@tsdown/css": "0.21.3",
140+
"@tsdown/exe": "0.21.3",
141141
"@types/node": "^20.19.0 || >=22.12.0",
142142
"@vitejs/devtools": "^0.0.0-alpha.31",
143143
"esbuild": "^0.27.0",
@@ -219,6 +219,6 @@
219219
"bundledVersions": {
220220
"vite": "8.0.0",
221221
"rolldown": "1.0.0-rc.9",
222-
"tsdown": "0.21.2"
222+
"tsdown": "0.21.3"
223223
}
224224
}

0 commit comments

Comments
 (0)