@rolldown/debug 1.0.0-beta.47 → 1.0.0-beta.49

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.
@@ -10,6 +10,10 @@ export type HookResolveIdCallEnd = {
10
10
  * The index of the plugin in the plugin list. It's unique to each plugin.
11
11
  */
12
12
  plugin_id: number;
13
+ /**
14
+ * - `automatic` means the resolve call is triggered by the bundler automatically.
15
+ * - `manual` means the resolve call is triggered manually by `this.resolve(...)`
16
+ */
13
17
  trigger: 'automatic' | 'manual';
14
18
  call_id: string;
15
19
  };
@@ -8,6 +8,10 @@ export type HookResolveIdCallStart = {
8
8
  * The index of the plugin in the plugin list. It's unique to each plugin.
9
9
  */
10
10
  plugin_id: number;
11
+ /**
12
+ * - `automatic` means the resolve call is triggered by the bundler automatically.
13
+ * - `manual` means the resolve call is triggered manually by `this.resolve(...)`
14
+ */
11
15
  trigger: 'automatic' | 'manual';
12
16
  call_id: string;
13
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolldown/debug",
3
- "version": "1.0.0-beta.47",
3
+ "version": "1.0.0-beta.49",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {
@@ -12,7 +12,7 @@
12
12
  "access": "public"
13
13
  },
14
14
  "devDependencies": {
15
- "@oxc-node/cli": "^0.0.32"
15
+ "@oxc-node/cli": "^0.0.34"
16
16
  },
17
17
  "exports": {
18
18
  ".": {