sonda 0.12.0 → 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,12 @@
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
+
3
10
  ## 0.12.0
4
11
 
5
12
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -1,10 +1,13 @@
1
- import { SourcesPathNormalizer } from "load-source-map";
2
1
  import { DecodedSourceMap } from "@jridgewell/remapping";
3
2
  import { PluginOption } from "vite";
4
3
  import { Metafile, Plugin } from "esbuild";
5
4
  import { Plugin as Plugin$1 } from "rollup";
6
5
  import { Compiler } from "webpack";
7
6
 
7
+ //#region ../load-source-map/dist/index.d.ts
8
+ //#region src/index.d.ts
9
+ type SourcesPathNormalizer = (path: string, sourceRoot: string) => string;
10
+ //#endregion
8
11
  //#region src/config.d.ts
9
12
  declare class Config implements Required<IntegrationOptions> {
10
13
  #private;