sonda 0.11.0 → 0.12.0

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,5 +1,4 @@
1
1
  import { Config, SondaRollupPlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/rolldown.ts
4
3
  function RolldownPlugin(userOptions = {}) {
5
4
  const options = new Config(userOptions, { integration: "rolldown" });
@@ -9,6 +8,5 @@ function RolldownPlugin(userOptions = {}) {
9
8
  name: "sonda/rolldown"
10
9
  };
11
10
  }
12
-
13
11
  //#endregion
14
- export { RolldownPlugin as default };
12
+ export { RolldownPlugin as default };
@@ -1,7 +1,5 @@
1
1
  import { SondaRollupPlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/rollup.ts
4
3
  var rollup_default = SondaRollupPlugin;
5
-
6
4
  //#endregion
7
- export { rollup_default as default };
5
+ export { rollup_default as default };
@@ -1,5 +1,4 @@
1
1
  import { Config, SondaWebpackPlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/rspack.ts
4
3
  var SondaRspackPlugin = class extends SondaWebpackPlugin {
5
4
  constructor(userOptions = {}) {
@@ -7,6 +6,5 @@ var SondaRspackPlugin = class extends SondaWebpackPlugin {
7
6
  this.options = new Config(userOptions, { integration: "rspack" });
8
7
  }
9
8
  };
10
-
11
9
  //#endregion
12
- export { SondaRspackPlugin as default };
10
+ export { SondaRspackPlugin as default };
@@ -1,5 +1,4 @@
1
1
  import { Config, SondaVitePlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/sveltekit.ts
4
3
  function SondaSvelteKitPlugin(userOptions = {}) {
5
4
  const options = new Config(userOptions, {
@@ -18,6 +17,5 @@ function SondaSvelteKitPlugin(userOptions = {}) {
18
17
  }
19
18
  };
20
19
  }
21
-
22
20
  //#endregion
23
- export { SondaSvelteKitPlugin as default };
21
+ export { SondaSvelteKitPlugin as default };
@@ -1,7 +1,5 @@
1
1
  import { SondaVitePlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/vite.ts
4
3
  var vite_default = SondaVitePlugin;
5
-
6
4
  //#endregion
7
- export { vite_default as default };
5
+ export { vite_default as default };
@@ -1,7 +1,5 @@
1
1
  import { SondaWebpackPlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/webpack.ts
4
3
  var webpack_default = SondaWebpackPlugin;
5
-
6
4
  //#endregion
7
- export { webpack_default as default };
5
+ export { webpack_default as default };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
+ import { SourcesPathNormalizer } from "load-source-map";
1
2
  import { DecodedSourceMap } from "@jridgewell/remapping";
2
3
  import { PluginOption } from "vite";
3
- import { SourcesPathNormalizer } from "load-source-map";
4
4
  import { Metafile, Plugin } from "esbuild";
5
5
  import { Plugin as Plugin$1 } from "rollup";
6
6
  import { Compiler } from "webpack";
@@ -230,6 +230,10 @@ interface Metadata {
230
230
  */
231
231
  version: string;
232
232
  /**
233
+ * ISO 8601 timestamp indicating when the report was generated.
234
+ */
235
+ generatedAt: string;
236
+ /**
233
237
  * Integration used to generate the report.
234
238
  */
235
239
  integration: Integration;