sonda 0.11.1 → 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 +11 -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 +8 -124
- package/package.json +50 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fbabd14: BREAKING CHANGE: Require Node.js 22.12.0 or later.
|
|
8
|
+
- adb77bb: Add `metadata.generatedAt` field to the report.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 9d70127: Fix error when generating report in Astro 6.
|
|
13
|
+
|
|
3
14
|
## 0.11.1
|
|
4
15
|
|
|
5
16
|
### 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 };
|
package/dist/entrypoints/next.js
CHANGED
|
@@ -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 };
|
package/dist/entrypoints/nuxt.js
CHANGED
|
@@ -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 };
|