vue-jsx-vapor 3.2.12 → 3.2.13

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.
@@ -0,0 +1,16 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ const require_unplugin = require("./unplugin.cjs");
6
+ //#region src/rsbuild.ts
7
+ var rsbuild_default = (options = {}) => ({
8
+ name: "rsbuild:vue-jsx-vapor",
9
+ setup(api) {
10
+ api.modifyBundlerChain((chain) => {
11
+ chain.plugin("vue-jsx-vapor").use(require_unplugin.default.rspack(options));
12
+ });
13
+ }
14
+ });
15
+ //#endregion
16
+ exports.default = rsbuild_default;
@@ -0,0 +1,7 @@
1
+ import { t as Options } from "./options-BGVfa0WB.cjs";
2
+ //#region src/rsbuild.d.ts
3
+ declare const _default: (options?: Options) => {
4
+ name: string;
5
+ setup(api: any): void;
6
+ };
7
+ export = _default;
@@ -0,0 +1,8 @@
1
+ import { t as Options } from "./options-DNxVVwqH.js";
2
+ //#region src/rsbuild.d.ts
3
+ declare const _default: (options?: Options) => {
4
+ name: string;
5
+ setup(api: any): void;
6
+ };
7
+ //#endregion
8
+ export { _default as default };
@@ -0,0 +1,12 @@
1
+ import unplugin from "./unplugin.js";
2
+ //#region src/rsbuild.ts
3
+ var rsbuild_default = (options = {}) => ({
4
+ name: "rsbuild:vue-jsx-vapor",
5
+ setup(api) {
6
+ api.modifyBundlerChain((chain) => {
7
+ chain.plugin("vue-jsx-vapor").use(unplugin.rspack(options));
8
+ });
9
+ }
10
+ });
11
+ //#endregion
12
+ export { rsbuild_default as default };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vue-jsx-vapor",
3
3
  "type": "module",
4
- "version": "3.2.12",
4
+ "version": "3.2.13",
5
5
  "description": "Vapor Mode of Vue JSX",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/vuejs/vue-jsx-vapor#readme",
@@ -41,6 +41,12 @@
41
41
  "import": "./dist/rspack.js",
42
42
  "require": "./dist/rspack.cjs"
43
43
  },
44
+ "./rsbuild": {
45
+ "types": "./dist/rsbuild.d.ts",
46
+ "jsx-vapor-dev": "./src/rsbuild.ts",
47
+ "import": "./dist/rsbuild.js",
48
+ "require": "./dist/rsbuild.cjs"
49
+ },
44
50
  "./vite": {
45
51
  "types": "./dist/vite.d.ts",
46
52
  "jsx-vapor-dev": "./src/vite.ts",
@@ -170,9 +176,9 @@
170
176
  "ts-macro": "^0.3.7",
171
177
  "unplugin": "^3.0.0",
172
178
  "unplugin-utils": "^0.3.1",
173
- "@vue-jsx-vapor/compiler-rs": "3.2.12",
174
- "@vue-jsx-vapor/macros": "3.2.12",
175
- "@vue-jsx-vapor/runtime": "3.2.12"
179
+ "@vue-jsx-vapor/compiler-rs": "3.2.13",
180
+ "@vue-jsx-vapor/macros": "3.2.13",
181
+ "@vue-jsx-vapor/runtime": "3.2.13"
176
182
  },
177
183
  "devDependencies": {
178
184
  "@nuxt/kit": "^3.21.4",