sonda 0.11.1 → 0.12.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c10b179: Fix Rollup/Rolldown dynamic import handling and input dependency trees for lazy chunks.
8
+ - 71be720: Inline local `load-source-map` dependency.
9
+
10
+ ## 0.12.0
11
+
12
+ ### Minor Changes
13
+
14
+ - fbabd14: BREAKING CHANGE: Require Node.js 22.12.0 or later.
15
+ - adb77bb: Add `metadata.generatedAt` field to the report.
16
+
17
+ ### Patch Changes
18
+
19
+ - 9d70127: Fix error when generating report in Astro 6.
20
+
3
21
  ## 0.11.1
4
22
 
5
23
  ### Patch Changes
@@ -1,7 +1,6 @@
1
1
  import { basename, relative, resolve } from "path";
2
2
  import { readFileSync, readdirSync } from "fs";
3
3
  import { Config, processEsbuildMetafile } from "sonda";
4
-
5
4
  //#region src/entrypoints/angular.ts
6
5
  async function SondaAngular({ config = "angular.json", projects = [], ...userOptions }) {
7
6
  const options = new Config(userOptions, {
@@ -46,6 +45,5 @@ function updateMetafile(metafile, basePath) {
46
45
  }
47
46
  return metafile;
48
47
  }
49
-
50
48
  //#endregion
51
- export { SondaAngular as default };
49
+ export { SondaAngular as default };
@@ -1,5 +1,4 @@
1
1
  import { Config, SondaVitePlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/astro.ts
4
3
  function SondaAstroPlugin(userOptions = {}) {
5
4
  const options = new Config(userOptions, {
@@ -24,6 +23,5 @@ function SondaAstroPlugin(userOptions = {}) {
24
23
  } }
25
24
  };
26
25
  }
27
-
28
26
  //#endregion
29
- export { SondaAstroPlugin as default };
27
+ export { SondaAstroPlugin as default };
@@ -1,7 +1,5 @@
1
1
  import { SondaEsbuildPlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/esbuild.ts
4
3
  var esbuild_default = SondaEsbuildPlugin;
5
-
6
4
  //#endregion
7
- export { esbuild_default as default };
5
+ export { esbuild_default as default };
@@ -1,5 +1,4 @@
1
1
  import { Config, SondaWebpackPlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/next.ts
4
3
  function SondaNextPlugin(userOptions = {}) {
5
4
  return function Sonda(nextConfig = {}) {
@@ -18,6 +17,5 @@ function SondaNextPlugin(userOptions = {}) {
18
17
  } });
19
18
  };
20
19
  }
21
-
22
20
  //#endregion
23
- export { SondaNextPlugin as default };
21
+ export { SondaNextPlugin as default };
@@ -1,5 +1,4 @@
1
1
  import { Config, SondaVitePlugin } from "sonda";
2
-
3
2
  //#region src/entrypoints/nuxt.ts
4
3
  function SondaNuxtPlugin(userOptions = {}) {
5
4
  return function SondaNuxtPlugin(_, nuxt) {
@@ -21,6 +20,5 @@ function SondaNuxtPlugin(userOptions = {}) {
21
20
  });
22
21
  };
23
22
  }
24
-
25
23
  //#endregion
26
- export { SondaNuxtPlugin as default };
24
+ export { SondaNuxtPlugin as default };