Skip to content

Commit bb3ee8d

Browse files
committed
feat: upgrade rolldown to 1.0.0-beta.60
1 parent 5ebc9a3 commit bb3ee8d

File tree

5 files changed

+554
-533
lines changed

5 files changed

+554
-533
lines changed

dts.snapshot.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"Logger": "interface Logger {\n level: LogLevel\n info: (...args: any[]) => void\n warn: (...args: any[]) => void\n warnOnce: (...args: any[]) => void\n error: (...args: any[]) => void\n success: (...args: any[]) => void\n clearScreen: (_: LogType) => void\n}",
106106
"LogLevel": "type LogLevel = LogType | 'silent'",
107107
"LogType": "type LogType = 'error' | 'warn' | 'info'",
108-
"MarkPartial": "type MarkPartial<T, K$1 extends keyof T> = Omit<Required<T>, K$1> & Partial<Pick<T, K$1>>",
108+
"MarkPartial": "type MarkPartial<T, K extends keyof T> = Omit<Required<T>, K> & Partial<Pick<T, K>>",
109109
"NoExternalFn": "type NoExternalFn = (_: string, _: string | undefined) => boolean | null | undefined | void",
110110
"NormalizedFormat": "type NormalizedFormat = InternalModuleFormat",
111111
"OutExtensionContext": "interface OutExtensionContext {\n options: InputOptions\n format: NormalizedFormat\n pkgType?: PackageType\n}",

0 commit comments

Comments
 (0)