Skip to content

Commit 50bf7ab

Browse files
github-actions[bot]fengmk2
authored andcommitted
feat(deps): upgrade upstream dependencies
1 parent c0c8ebd commit 50bf7ab

7 files changed

Lines changed: 445 additions & 374 deletions

File tree

Cargo.lock

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ rolldown_filter_analyzer = { path = "./rolldown/crates/rolldown_filter_analyzer"
239239
rolldown_fs = { path = "./rolldown/crates/rolldown_fs" }
240240
rolldown_fs_watcher = { path = "./rolldown/crates/rolldown_fs_watcher" }
241241
rolldown_plugin = { path = "./rolldown/crates/rolldown_plugin" }
242+
rolldown_plugin_asset_module = { path = "./rolldown/crates/rolldown_plugin_asset_module" }
242243
rolldown_plugin_bundle_analyzer = { path = "./rolldown/crates/rolldown_plugin_bundle_analyzer" }
243244
rolldown_plugin_chunk_import_map = { path = "./rolldown/crates/rolldown_plugin_chunk_import_map" }
244245
rolldown_plugin_copy_module = { path = "./rolldown/crates/rolldown_plugin_copy_module" }

packages/core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@
125125
},
126126
"peerDependencies": {
127127
"@arethetypeswrong/core": "^0.18.1",
128-
"@tsdown/css": "0.21.0",
129-
"@tsdown/exe": "0.21.0",
128+
"@tsdown/css": "0.21.1",
129+
"@tsdown/exe": "0.21.1",
130130
"@types/node": "^20.19.0 || >=22.12.0",
131131
"@vitejs/devtools": "^0.0.0-alpha.31",
132132
"esbuild": "^0.27.0",
@@ -206,8 +206,8 @@
206206
"node": "^20.19.0 || >=22.12.0"
207207
},
208208
"bundledVersions": {
209-
"vite": "8.0.0-beta.16",
210-
"rolldown": "1.0.0-rc.7",
211-
"tsdown": "0.21.0"
209+
"vite": "8.0.0-beta.18",
210+
"rolldown": "1.0.0-rc.8",
211+
"tsdown": "0.21.1"
212212
}
213213
}

packages/tools/.upstream-versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"rolldown": {
33
"repo": "https://github.com/rolldown/rolldown.git",
44
"branch": "main",
5-
"hash": "8cd2ed73caca3f04e81e242cd564bdece8454a43"
5+
"hash": "4c0d397ff77ee1abc2509db5d3a05f902bdea70c"
66
},
77
"rolldown-vite": {
88
"repo": "https://github.com/vitejs/vite.git",
99
"branch": "main",
10-
"hash": "9ed2b43d16a7b36a849a87e6a7ee2facc243f70f"
10+
"hash": "1ee5372e80c23be3c17cf6d09d58c25ccd62531f"
1111
}
1212
}

packages/tools/src/brand-rolldown-vite.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,13 @@ export function brandRolldownVite(rootDir: string = process.cwd()) {
156156
const reporterResults = [
157157
replaceInFile(
158158
reporterFile,
159-
'const COMPRESSIBLE_ASSETS_RE = /\\.(?:html|json|svg|txt|xml|xhtml|wasm)$/',
160-
'const COMPRESSIBLE_ASSETS_RE = /\\.(?:html|json|svg|txt|xml|xhtml|wasm)$/\nconst VITE_VERSION_ONLY_LINE_RE = /^vite v\\S+$/',
159+
"import path from 'node:path'",
160+
"import path from 'node:path'\n\nconst VITE_VERSION_ONLY_LINE_RE = /^vite v\\S+$/",
161161
),
162162
replaceInFile(
163163
reporterFile,
164-
' logInfo: shouldLogInfo ? (msg) => env.logger.info(msg) : undefined,',
165-
' logInfo: shouldLogInfo\n ? (msg) => {\n // Keep transformed/chunk/gzip logs but suppress redundant version-only line.\n if (VITE_VERSION_ONLY_LINE_RE.test(msg.trim())) {\n return\n }\n env.logger.info(msg)\n }\n : undefined,',
164+
' logInfo: shouldLogInfo ? (msg) => env.logger.info(msg) : undefined,',
165+
' logInfo: shouldLogInfo\n ? (msg) => {\n // Keep transformed/chunk/gzip logs but suppress redundant version-only line.\n if (VITE_VERSION_ONLY_LINE_RE.test(msg.trim())) {\n return\n }\n env.logger.info(msg)\n }\n : undefined,',
166166
),
167167
];
168168
logPatch(

0 commit comments

Comments
 (0)