@rolldown/debug
Advanced tools
| export type BuildEnd = { | ||
| action: 'BuildEnd'; | ||
| }; |
| // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
| export {}; |
| export type BuildStart = { | ||
| action: 'BuildStart'; | ||
| }; |
| // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
| export {}; |
| export type HookResolveIdCallEnd = { | ||
| action: 'HookResolveIdCallEnd'; | ||
| resolved_id: string | null; | ||
| /** | ||
| * If the value is `true/false`, it means the plugin explicitly returned the value for this field. | ||
| */ | ||
| is_external: boolean | null; | ||
| plugin_name: string; | ||
| /** | ||
| * The index of the plugin in the plugin list. It's unique to each plugin. | ||
| */ | ||
| plugin_index: number; | ||
| trigger: 'automatic' | 'manual'; | ||
| call_id: string; | ||
| }; |
| // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
| export {}; |
| export type HookResolveIdCallStart = { | ||
| action: 'HookResolveIdCallStart'; | ||
| importer: string | null; | ||
| module_request: string; | ||
| import_kind: string; | ||
| plugin_name: string; | ||
| /** | ||
| * The index of the plugin in the plugin list. It's unique to each plugin. | ||
| */ | ||
| plugin_index: number; | ||
| trigger: 'automatic' | 'manual'; | ||
| call_id: string; | ||
| }; |
| // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
| export {}; |
| import type { BuildEnd } from "./BuildEnd"; | ||
| import type { BuildStart } from "./BuildStart"; | ||
| import type { HookLoadCallEnd } from "./HookLoadCallEnd"; | ||
| import type { HookLoadCallStart } from "./HookLoadCallStart"; | ||
| import type { HookResolveIdCallEnd } from "./HookResolveIdCallEnd"; | ||
| import type { HookResolveIdCallStart } from "./HookResolveIdCallStart"; | ||
| import type { HookTransformCallEnd } from "./HookTransformCallEnd"; | ||
| import type { HookTransformCallStart } from "./HookTransformCallStart"; | ||
| export type Meta = HookTransformCallStart | HookTransformCallEnd | HookLoadCallStart | HookLoadCallEnd | BuildStart | BuildEnd | HookResolveIdCallStart | HookResolveIdCallEnd; |
| export {}; |
| export type HookLoadCallEnd = { | ||
| kind: 'HookLoadCallEnd'; | ||
| action: 'HookLoadCallEnd'; | ||
| module_id: string; | ||
| source: string | null; | ||
| plugin_name: string; | ||
| /** | ||
| * The index of the plugin in the plugin list. It's unique to each plugin. | ||
| */ | ||
| plugin_index: number; | ||
| call_id: string; | ||
| }; |
| export type HookLoadCallStart = { | ||
| kind: 'HookLoadCallStart'; | ||
| action: 'HookLoadCallStart'; | ||
| module_id: string; | ||
| plugin_name: string; | ||
| /** | ||
| * The index of the plugin in the plugin list. It's unique to each plugin. | ||
| */ | ||
| plugin_index: number; | ||
| call_id: string; | ||
| }; |
| export type HookTransformCallEnd = { | ||
| kind: 'HookTransformCallEnd'; | ||
| action: 'HookTransformCallEnd'; | ||
| module_id: string; | ||
| transformed_source: string | null; | ||
| plugin_name: string; | ||
| /** | ||
| * The index of the plugin in the plugin list. It's unique to each plugin. | ||
| */ | ||
| plugin_index: number; | ||
| call_id: string; | ||
| }; |
| export type HookTransformCallStart = { | ||
| kind: 'HookTransformCallStart'; | ||
| action: 'HookTransformCallStart'; | ||
| module_id: string; | ||
| source: string; | ||
| plugin_name: string; | ||
| /** | ||
| * The index of the plugin in the plugin list. It's unique to each plugin. | ||
| */ | ||
| plugin_index: number; | ||
| call_id: string; | ||
| }; |
@@ -1,5 +0,9 @@ | ||
| export * from './Action.js'; | ||
| export * from './BuildEnd.js'; | ||
| export * from './BuildStart.js'; | ||
| export * from './HookLoadCallEnd.js'; | ||
| export * from './HookLoadCallStart.js'; | ||
| export * from './HookResolveIdCallEnd.js'; | ||
| export * from './HookResolveIdCallStart.js'; | ||
| export * from './HookTransformCallEnd.js'; | ||
| export * from './HookTransformCallStart.js'; | ||
| export * from './Meta.js'; |
@@ -1,5 +0,9 @@ | ||
| export * from './Action.js'; | ||
| export * from './BuildEnd.js'; | ||
| export * from './BuildStart.js'; | ||
| export * from './HookLoadCallEnd.js'; | ||
| export * from './HookLoadCallStart.js'; | ||
| export * from './HookResolveIdCallEnd.js'; | ||
| export * from './HookResolveIdCallStart.js'; | ||
| export * from './HookTransformCallEnd.js'; | ||
| export * from './HookTransformCallStart.js'; | ||
| export * from './Meta.js'; |
+4
-7
@@ -1,11 +0,8 @@ | ||
| import { type Action } from './generated/index.js'; | ||
| import { type Meta } from './generated/index.js'; | ||
| export * from './generated/index.js'; | ||
| export interface Event { | ||
| export type Event = { | ||
| timestamp: string; | ||
| buildId: string; | ||
| fields: { | ||
| action: Action; | ||
| }; | ||
| } | ||
| session_id: string; | ||
| } & Meta; | ||
| export declare function parseToEvents(data: string): Event[]; | ||
| export declare function parseToEvent(data: string): Event; |
+1
-1
| { | ||
| "name": "@rolldown/debug", | ||
| "version": "1.0.0-beta.7-commit.cef50bd", | ||
| "version": "1.0.0-beta.8-commit.101b994", | ||
| "license": "MIT", | ||
@@ -5,0 +5,0 @@ "type": "module", |
| import type { HookLoadCallEnd } from "./HookLoadCallEnd"; | ||
| import type { HookLoadCallStart } from "./HookLoadCallStart"; | ||
| import type { HookTransformCallEnd } from "./HookTransformCallEnd"; | ||
| import type { HookTransformCallStart } from "./HookTransformCallStart"; | ||
| export type Action = HookTransformCallStart | HookTransformCallEnd | HookLoadCallStart | HookLoadCallEnd; |
| export {}; |
Sorry, the diff of this file is not supported yet
7287
59.1%25
47.06%136
109.23%