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 +7 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.html +1 -1
- package/dist/index.js +126 -4
- package/package.json +16 -1
package/CHANGELOG.md
CHANGED
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;
|