Skip to content

Commit 512926d

Browse files
committed
feat: upgrade rolldown to v1.0.0-rc.12
1 parent ff0c45a commit 512926d

File tree

8 files changed

+221
-258
lines changed

8 files changed

+221
-258
lines changed

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ catalogs:
1818
'@types/node': ^25.5.0
1919
'@types/picomatch': ^4.0.2
2020
'@types/semver': ^7.7.1
21-
'@typescript/native-preview': 7.0.0-dev.20260325.1
21+
'@typescript/native-preview': 7.0.0-dev.20260326.1
2222
'@vitest/coverage-v8': ^4.1.1
2323
'@vitest/ui': ^4.1.1
2424
bumpp: ^11.0.1
@@ -47,9 +47,9 @@ catalogs:
4747
typedoc-plugin-markdown: ^4.11.0
4848
typedoc-vitepress-theme: ^1.1.2
4949
unocss: ^66.6.7
50-
vite: ^8.0.2
50+
vite: ^8.0.3
5151
vitepress: ^2.0.0-alpha.17
52-
vitepress-plugin-group-icons: ^1.7.1
52+
vitepress-plugin-group-icons: ^1.7.2
5353
vitepress-plugin-llms: ^1.12.0
5454
vue: ^3.5.31
5555
vue-tsc: ^3.2.6
@@ -76,8 +76,8 @@ catalogs:
7676
package-manager-detector: ^1.6.0
7777
picomatch: ^4.0.4
7878
postcss-load-config: ^6.0.1
79-
rolldown: 1.0.0-rc.11
80-
rolldown-plugin-dts: ^0.22.5
79+
rolldown: 1.0.0-rc.12
80+
rolldown-plugin-dts: ^0.23.0
8181
semver: ^7.7.4
8282
tinyexec: ^1.0.4
8383
tinyglobby: ^0.2.15

src/features/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { isBuiltin } from 'node:module'
33
import path from 'node:path'
44
import { blue, underline, yellow } from 'ansis'
55
import { createDebug } from 'obug'
6-
import { RE_DTS, RE_NODE_MODULES } from 'rolldown-plugin-dts/filename'
6+
import { RE_DTS, RE_NODE_MODULES } from 'rolldown-plugin-dts/internal'
77
import { and, id, importerId, include } from 'rolldown/filter'
88
import {
99
matchPattern,

src/features/exe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import path from 'node:path'
44
import process from 'node:process'
55
import { bold, dim, red } from 'ansis'
66
import { createDebug } from 'obug'
7-
import { RE_DTS } from 'rolldown-plugin-dts/filename'
7+
import { RE_DTS } from 'rolldown-plugin-dts/internal'
88
import satisfies from 'semver/functions/satisfies.js'
99
import { x } from 'tinyexec'
1010
import { formatBytes } from '../utils/format.ts'

src/features/output.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RE_CSS, RE_DTS, RE_JS } from 'rolldown-plugin-dts/filename'
1+
import { RE_CSS, RE_DTS, RE_JS } from 'rolldown-plugin-dts/internal'
22
import { getPackageType, type PackageType } from '../utils/package.ts'
33
import type {
44
Format,

src/features/pkg/exports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { readFileSync, writeFileSync } from 'node:fs'
22
import path from 'node:path'
3-
import { RE_CSS, RE_DTS, RE_NODE_MODULES } from 'rolldown-plugin-dts/filename'
3+
import { RE_CSS, RE_DTS, RE_NODE_MODULES } from 'rolldown-plugin-dts/internal'
44
import { detectIndentation } from '../../utils/format.ts'
55
import { stripExtname } from '../../utils/fs.ts'
66
import { matchPattern, slash, typeAssert } from '../../utils/general.ts'

src/features/report.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { promisify } from 'node:util'
44
import { brotliCompress, gzip } from 'node:zlib'
55
import { bold, dim, green } from 'ansis'
66
import { createDebug } from 'obug'
7-
import { RE_DTS } from 'rolldown-plugin-dts/filename'
7+
import { RE_DTS } from 'rolldown-plugin-dts/internal'
88
import { formatBytes } from '../utils/format.ts'
99
import { noop } from '../utils/general.ts'
1010
import { prettyFormat } from '../utils/logger.ts'

tests/e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { readFile } from 'node:fs/promises'
22
import path from 'node:path'
3-
import { RE_NODE_MODULES } from 'rolldown-plugin-dts/filename'
3+
import { RE_NODE_MODULES } from 'rolldown-plugin-dts/internal'
44
import { describe, expect, test, vi } from 'vitest'
55
import { resolveConfig, type UserConfig } from '../src/config/index.ts'
66
import { slash } from '../src/utils/general.ts'

0 commit comments

Comments
 (0)