ezfw-core 1.0.95 → 1.0.96
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.
|
@@ -905,4 +905,8 @@ function generateSitemap(pages, siteUrl) {
|
|
|
905
905
|
${urls}
|
|
906
906
|
</urlset>`;
|
|
907
907
|
}
|
|
908
|
+
// Re-export other Vite plugins for unified import
|
|
909
|
+
export { ezEntry } from '../core/ezEntryPlugin.js';
|
|
910
|
+
export { ezJsx } from '../jsx/vite-plugin-ez-jsx.js';
|
|
911
|
+
|
|
908
912
|
export default ezIslands;
|
|
@@ -401,4 +401,8 @@ export function ezIslands(options: EzIslandsOptions = {}): Plugin {
|
|
|
401
401
|
// Re-export types for consumers
|
|
402
402
|
export type { EzIslandsOptions, PageInfo, IslandInfo, BuildManifest, StaticPathParams, GetStaticPaths } from './types.js';
|
|
403
403
|
|
|
404
|
+
// Re-export other Vite plugins for unified import
|
|
405
|
+
export { ezEntry } from '../core/ezEntryPlugin.js';
|
|
406
|
+
export { ezJsx } from '../jsx/vite-plugin-ez-jsx.js';
|
|
407
|
+
|
|
404
408
|
export default ezIslands;
|