@vue-jsx/macros 3.3.0-beta.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/dist/api.js ADDED
@@ -0,0 +1,2 @@
1
+ import { a as isFunctionalNode, n as transformJsxMacros, r as restructure, t as getMacroExpression } from "./core-BRE2gjfq.js";
2
+ export { getMacroExpression, isFunctionalNode, restructure, transformJsxMacros };
@@ -0,0 +1,11 @@
1
+ import { n as Options } from "./options-CtTcew0x.js";
2
+
3
+ //#region src/astro.d.ts
4
+ declare const _default: (options: Options) => {
5
+ name: string;
6
+ hooks: {
7
+ 'astro:config:setup': (astro: any) => void;
8
+ };
9
+ };
10
+ //#endregion
11
+ export { _default as default };
package/dist/astro.js ADDED
@@ -0,0 +1,11 @@
1
+ import unplugin from "./index.js";
2
+ //#region src/astro.ts
3
+ var astro_default = (options) => ({
4
+ name: "vue-jsx-vapor",
5
+ hooks: { "astro:config:setup": (astro) => {
6
+ astro.config.vite.plugins ||= [];
7
+ astro.config.vite.plugins.push(unplugin.vite(options));
8
+ } }
9
+ });
10
+ //#endregion
11
+ export { astro_default as default };
package/dist/bun.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ import { n as Options } from "./options-CtTcew0x.js";
2
+
3
+ //#region src/bun.d.ts
4
+ declare const _default: (options?: Options | undefined) => BunPlugin;
5
+ //#endregion
6
+ export { _default as default };
package/dist/bun.js ADDED
@@ -0,0 +1,5 @@
1
+ import unplugin from "./index.js";
2
+ //#region src/bun.ts
3
+ var bun_default = unplugin.bun;
4
+ //#endregion
5
+ export { bun_default as default };