sonda 0.12.0 → 0.13.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 24825cd: Replace the `open` dependency with `tiny-open`, removing 11 transitive dependencies from the published package.
8
+
9
+ ### Patch Changes
10
+
11
+ - 6ddc13c: Restore npm provenance publishing in the release workflow.
12
+
13
+ ## 0.12.1
14
+
15
+ ### Patch Changes
16
+
17
+ - c10b179: Fix Rollup/Rolldown dynamic import handling and input dependency trees for lazy chunks.
18
+ - 71be720: Inline local `load-source-map` dependency.
19
+
3
20
  ## 0.12.0
4
21
 
5
22
  ### 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;