Skip to content

Commit 621b866

Browse files
committedFeb 2, 2025··
fix: support latest rolldown types
1 parent 9bfdb70 commit 621b866

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎src/index.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from './fixture'
2-
export * from './rolldown'
3-
export * from './rollup'
4-
export * from './snapshot'
5-
export * from './string'
1+
export * from './fixture';
2+
export * from './rolldown';
3+
export * from './rollup';
4+
export * from './snapshot';
5+
export * from './string';

‎src/snapshot.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import process from 'node:process'
44
import { glob } from 'tinyglobby'
55
import { expect as globalExpect, type ExpectStatic } from 'vitest'
66
import type { OutputFile } from 'esbuild'
7-
import type { RolldownOutputAsset, RolldownOutputChunk } from 'rolldown'
7+
import type { OutputAsset as RolldownOutputAsset, OutputChunk as RolldownOutputChunk } from 'rolldown'
88
import type { OutputAsset, OutputChunk } from 'rollup'
99

1010
export function outputToSnapshot(

0 commit comments

Comments
 (0)