@rolldown/debug 1.0.0-beta.7-commit.a684277 → 1.0.0-beta.7-commit.c2596d3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,8 @@ import type { BuildEnd } from "./BuildEnd";
2
2
  import type { BuildStart } from "./BuildStart";
3
3
  import type { HookLoadCallEnd } from "./HookLoadCallEnd";
4
4
  import type { HookLoadCallStart } from "./HookLoadCallStart";
5
+ import type { HookResolveIdCallEnd } from "./HookResolveIdCallEnd";
6
+ import type { HookResolveIdCallStart } from "./HookResolveIdCallStart";
5
7
  import type { HookTransformCallEnd } from "./HookTransformCallEnd";
6
8
  import type { HookTransformCallStart } from "./HookTransformCallStart";
7
- export type Action = HookTransformCallStart | HookTransformCallEnd | HookLoadCallStart | HookLoadCallEnd | BuildStart | BuildEnd;
9
+ export type Action = HookTransformCallStart | HookTransformCallEnd | HookLoadCallStart | HookLoadCallEnd | BuildStart | BuildEnd | HookResolveIdCallStart | HookResolveIdCallEnd;
@@ -0,0 +1,13 @@
1
+ export type HookResolveIdCallEnd = {
2
+ kind: 'HookResolveIdCallEnd';
3
+ resolved_id: string | null;
4
+ /**
5
+ * If the value is `true/false`, it means the plugin explicitly returned the value for this field.
6
+ */
7
+ is_external: boolean | null;
8
+ plugin_name: string;
9
+ /**
10
+ * The index of the plugin in the plugin list. It's unique to each plugin.
11
+ */
12
+ plugin_index: number;
13
+ };
@@ -0,0 +1,2 @@
1
+ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2
+ export {};
@@ -0,0 +1,11 @@
1
+ export type HookResolveIdCallStart = {
2
+ kind: 'HookResolveIdCallStart';
3
+ importer: string | null;
4
+ module_request: string;
5
+ import_kind: string;
6
+ plugin_name: string;
7
+ /**
8
+ * The index of the plugin in the plugin list. It's unique to each plugin.
9
+ */
10
+ plugin_index: number;
11
+ };
@@ -0,0 +1,2 @@
1
+ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2
+ export {};
@@ -3,5 +3,7 @@ export * from './BuildEnd.js';
3
3
  export * from './BuildStart.js';
4
4
  export * from './HookLoadCallEnd.js';
5
5
  export * from './HookLoadCallStart.js';
6
+ export * from './HookResolveIdCallEnd.js';
7
+ export * from './HookResolveIdCallStart.js';
6
8
  export * from './HookTransformCallEnd.js';
7
9
  export * from './HookTransformCallStart.js';
@@ -3,5 +3,7 @@ export * from './BuildEnd.js';
3
3
  export * from './BuildStart.js';
4
4
  export * from './HookLoadCallEnd.js';
5
5
  export * from './HookLoadCallStart.js';
6
+ export * from './HookResolveIdCallEnd.js';
7
+ export * from './HookResolveIdCallStart.js';
6
8
  export * from './HookTransformCallEnd.js';
7
9
  export * from './HookTransformCallStart.js';
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/generated/Action.ts","../src/generated/BuildEnd.ts","../src/generated/BuildStart.ts","../src/generated/HookLoadCallEnd.ts","../src/generated/HookLoadCallStart.ts","../src/generated/HookTransformCallEnd.ts","../src/generated/HookTransformCallStart.ts","../src/generated/index.ts"],"version":"5.8.3"}
1
+ {"root":["../src/index.ts","../src/generated/Action.ts","../src/generated/BuildEnd.ts","../src/generated/BuildStart.ts","../src/generated/HookLoadCallEnd.ts","../src/generated/HookLoadCallStart.ts","../src/generated/HookResolveIdCallEnd.ts","../src/generated/HookResolveIdCallStart.ts","../src/generated/HookTransformCallEnd.ts","../src/generated/HookTransformCallStart.ts","../src/generated/index.ts"],"version":"5.8.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolldown/debug",
3
- "version": "1.0.0-beta.7-commit.a684277",
3
+ "version": "1.0.0-beta.7-commit.c2596d3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {