@vue-jsx-vapor/macros 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.
- package/dist/nuxt.cjs +1 -1
- package/dist/nuxt.js +1 -1
- package/dist/rsbuild.cjs +16 -0
- package/dist/rsbuild.d.cts +8 -0
- package/dist/rsbuild.d.ts +9 -0
- package/dist/rsbuild.js +12 -0
- package/package.json +7 -1
package/dist/nuxt.cjs
CHANGED
package/dist/nuxt.js
CHANGED
package/dist/rsbuild.cjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
const require_index = require("./index.cjs");
|
|
6
|
+
//#region src/rsbuild.ts
|
|
7
|
+
var rsbuild_default = (options = {}) => ({
|
|
8
|
+
name: "rsbuild:vue-jsx-vapor-macros",
|
|
9
|
+
setup(api) {
|
|
10
|
+
api.modifyBundlerChain((chain) => {
|
|
11
|
+
chain.plugin("vue-jsx-vapor-macros").use(require_index.default.rspack(options));
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
//#endregion
|
|
16
|
+
exports.default = rsbuild_default;
|
package/dist/rsbuild.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import unplugin from "./index.js";
|
|
2
|
+
//#region src/rsbuild.ts
|
|
3
|
+
var rsbuild_default = (options = {}) => ({
|
|
4
|
+
name: "rsbuild:vue-jsx-vapor-macros",
|
|
5
|
+
setup(api) {
|
|
6
|
+
api.modifyBundlerChain((chain) => {
|
|
7
|
+
chain.plugin("vue-jsx-vapor-macros").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/macros",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.13",
|
|
5
5
|
"description": "Macros for Vue JSX Vapor",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/vuejs/vue-jsx-vapor#readme",
|
|
@@ -38,6 +38,12 @@
|
|
|
38
38
|
"import": "./dist/rspack.js",
|
|
39
39
|
"require": "./dist/rspack.cjs"
|
|
40
40
|
},
|
|
41
|
+
"./rsbuild": {
|
|
42
|
+
"types": "./dist/rsbuild.d.ts",
|
|
43
|
+
"jsx-vapor-dev": "./src/rsbuild.ts",
|
|
44
|
+
"import": "./dist/rsbuild.js",
|
|
45
|
+
"require": "./dist/rsbuild.cjs"
|
|
46
|
+
},
|
|
41
47
|
"./vite": {
|
|
42
48
|
"types": "./dist/vite.d.ts",
|
|
43
49
|
"jsx-vapor-dev": "./src/vite.ts",
|