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.
- package/CHANGELOG.md +20 -0
- package/dist/entrypoints/angular.js +1 -3
- package/dist/entrypoints/astro.js +1 -3
- package/dist/entrypoints/esbuild.js +1 -3
- package/dist/entrypoints/next.js +1 -3
- package/dist/entrypoints/nuxt.js +1 -3
- package/dist/entrypoints/rolldown.d.ts +5887 -1
- package/dist/entrypoints/rolldown.js +1 -3
- package/dist/entrypoints/rollup.js +1 -3
- package/dist/entrypoints/rspack.js +1 -3
- package/dist/entrypoints/sveltekit.js +1 -3
- package/dist/entrypoints/vite.js +1 -3
- package/dist/entrypoints/webpack.js +1 -3
- package/dist/index.d.ts +5 -1
- package/dist/index.html +2 -2
- package/dist/index.js +25 -141
- package/package.json +50 -14
|
@@ -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,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 };
|
package/dist/entrypoints/vite.js
CHANGED
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;
|