@marko/run 0.9.7 → 0.11.0-rc.1

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.
@@ -1,6 +1,6 @@
1
- import type { Rollup } from "vite";
2
- type RollupError = Rollup.RollupError;
3
- export declare function prepareError(err: Error | RollupError): {
1
+ import type { Rolldown } from "vite";
2
+ type RolldownError = Rolldown.RolldownError;
3
+ export declare function prepareError(err: Error | RolldownError): {
4
4
  message: string;
5
5
  stack: string;
6
6
  id: string | undefined;
@@ -9,7 +9,7 @@ export declare function prepareError(err: Error | RollupError): {
9
9
  pluginCode: string | undefined;
10
10
  loc: {
11
11
  column: number;
12
- file?: string | undefined;
12
+ file?: string;
13
13
  line: number;
14
14
  } | undefined;
15
15
  };