vue-jsx-vapor 2.1.7 → 2.2.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.cjs +2 -2
- package/dist/api.d.cts +2 -12
- package/dist/api.d.ts +2 -12
- package/dist/api.js +1 -1
- package/dist/astro.cjs +4 -4
- package/dist/astro.js +3 -3
- package/dist/{chunk-E4OOBQM6.js → chunk-4HP6QVER.js} +1 -1
- package/dist/{chunk-JOQ6HUZ7.cjs → chunk-F7CI4ATH.cjs} +2 -2
- package/dist/{chunk-G5FQVEHY.js → chunk-G2KD2VHX.js} +1 -1
- package/dist/chunk-GY6DSRCV.cjs +22 -0
- package/dist/{chunk-WKWVDEIZ.js → chunk-HNBQ42EP.js} +1 -1
- package/dist/{chunk-4FRXY2W6.cjs → chunk-M4VKLZSB.cjs} +2 -2
- package/dist/{chunk-WAOMEMCZ.cjs → chunk-QBIU4H54.cjs} +2 -2
- package/dist/chunk-SAJ6WS2A.js +22 -0
- package/dist/chunk-T3F6TYMY.js +265 -0
- package/dist/chunk-VSS2IZIS.cjs +265 -0
- package/dist/esbuild.cjs +4 -4
- package/dist/esbuild.js +3 -3
- package/dist/nuxt.cjs +7 -7
- package/dist/nuxt.js +5 -5
- package/dist/raw.cjs +3 -3
- package/dist/raw.js +2 -2
- package/dist/rolldown.cjs +4 -4
- package/dist/rolldown.d.cts +1 -1
- package/dist/rolldown.d.ts +1 -1
- package/dist/rolldown.js +3 -3
- package/dist/rollup.cjs +4 -4
- package/dist/rollup.js +3 -3
- package/dist/rspack.cjs +4 -4
- package/dist/rspack.js +3 -3
- package/dist/unplugin.cjs +4 -4
- package/dist/unplugin.js +3 -3
- package/dist/vite.cjs +5 -5
- package/dist/vite.js +4 -4
- package/dist/webpack.cjs +5 -5
- package/dist/webpack.js +4 -4
- package/package.json +8 -5
- package/dist/chunk-CVVA3UFV.cjs +0 -58
- package/dist/chunk-GY27NIU6.cjs +0 -134
- package/dist/chunk-K7YI4ZKB.js +0 -134
- package/dist/chunk-MBCYFLIE.js +0 -58
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
+
|
|
3
|
+
var _chunkGY6DSRCVcjs = require('./chunk-GY6DSRCV.cjs');
|
|
4
|
+
|
|
5
|
+
// src/raw.ts
|
|
6
|
+
var _raw = require('@vue-jsx-vapor/macros/raw'); var _raw2 = _interopRequireDefault(_raw);
|
|
7
|
+
var _api = require('@vue-macros/jsx-directive/api');
|
|
8
|
+
var _unpluginutils = require('unplugin-utils');
|
|
9
|
+
|
|
10
|
+
// src/core/hmr.ts
|
|
11
|
+
var _api3 = require('@vue-jsx-vapor/macros/api');
|
|
12
|
+
var _hashsum = require('hash-sum'); var _hashsum2 = _interopRequireDefault(_hashsum);
|
|
13
|
+
|
|
14
|
+
// src/core/ssr.ts
|
|
15
|
+
var _pathe = require('pathe');
|
|
16
|
+
|
|
17
|
+
var ssrRegisterHelperId = "/__vue-jsx-ssr-register-helper";
|
|
18
|
+
var ssrRegisterHelperCode = `import { useSSRContext } from "vue"
|
|
19
|
+
export const ssrRegisterHelper = ${ssrRegisterHelper.toString()}`;
|
|
20
|
+
function ssrRegisterHelper(comp, filename) {
|
|
21
|
+
const setup = comp.setup;
|
|
22
|
+
comp.setup = (props, ctx) => {
|
|
23
|
+
const ssrContext = useSSRContext();
|
|
24
|
+
(ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add(filename);
|
|
25
|
+
if (setup) {
|
|
26
|
+
return setup(props, ctx);
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
function injectSSR(id, hotComponents, root = "") {
|
|
31
|
+
const normalizedId = _unpluginutils.normalizePath.call(void 0, _pathe.relative.call(void 0, root, id));
|
|
32
|
+
let ssrInjectCode = `
|
|
33
|
+
import { ssrRegisterHelper } from "${ssrRegisterHelperId}"
|
|
34
|
+
const __moduleId = ${JSON.stringify(normalizedId)}`;
|
|
35
|
+
for (const { local } of hotComponents) {
|
|
36
|
+
ssrInjectCode += `
|
|
37
|
+
ssrRegisterHelper(${local}, __moduleId)`;
|
|
38
|
+
}
|
|
39
|
+
return ssrInjectCode;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// src/core/hmr.ts
|
|
43
|
+
function injectHMRAndSSR(result, id, options) {
|
|
44
|
+
const ssr = _optionalChain([options, 'optionalAccess', _ => _.ssr]);
|
|
45
|
+
const defineComponentNames = _nullishCoalesce(_optionalChain([options, 'optionalAccess', _2 => _2.defineComponentNames]), () => ( [
|
|
46
|
+
"defineComponent",
|
|
47
|
+
"defineVaporComponent"
|
|
48
|
+
]));
|
|
49
|
+
const { ast } = result;
|
|
50
|
+
const declaredComponents = [];
|
|
51
|
+
const hotComponents = [];
|
|
52
|
+
let hasDefaultExport = false;
|
|
53
|
+
for (const node of ast.program.body) {
|
|
54
|
+
if (node.type === "VariableDeclaration") {
|
|
55
|
+
const names = parseComponentDecls(node, defineComponentNames);
|
|
56
|
+
if (names.length) {
|
|
57
|
+
declaredComponents.push(...names);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
if (node.type === "ExportNamedDeclaration") {
|
|
61
|
+
if (node.declaration && node.declaration.type === "VariableDeclaration") {
|
|
62
|
+
hotComponents.push(
|
|
63
|
+
...parseComponentDecls(node.declaration, defineComponentNames).map(
|
|
64
|
+
(name) => ({
|
|
65
|
+
local: name,
|
|
66
|
+
exported: name,
|
|
67
|
+
id: _hashsum2.default.call(void 0, id + name)
|
|
68
|
+
})
|
|
69
|
+
)
|
|
70
|
+
);
|
|
71
|
+
} else if (node.specifiers.length) {
|
|
72
|
+
for (const spec of node.specifiers) {
|
|
73
|
+
if (spec.type === "ExportSpecifier" && spec.exported.type === "Identifier") {
|
|
74
|
+
const matched = declaredComponents.find(
|
|
75
|
+
(name) => name === spec.local.name
|
|
76
|
+
);
|
|
77
|
+
if (matched) {
|
|
78
|
+
hotComponents.push({
|
|
79
|
+
local: spec.local.name,
|
|
80
|
+
exported: spec.exported.name,
|
|
81
|
+
id: _hashsum2.default.call(void 0, id + spec.exported.name)
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
if (node.type === "ExportDefaultDeclaration") {
|
|
89
|
+
if (node.declaration.type === "Identifier") {
|
|
90
|
+
const _name = node.declaration.name;
|
|
91
|
+
const matched = declaredComponents.find((name) => name === _name);
|
|
92
|
+
if (matched) {
|
|
93
|
+
hotComponents.push({
|
|
94
|
+
local: _name,
|
|
95
|
+
exported: "default",
|
|
96
|
+
id: _hashsum2.default.call(void 0, `${id}default`)
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
} else if (isDefineComponentCall(node.declaration, defineComponentNames) || _api3.isFunctionalNode.call(void 0, node.declaration)) {
|
|
100
|
+
hasDefaultExport = true;
|
|
101
|
+
hotComponents.push({
|
|
102
|
+
local: "__default__",
|
|
103
|
+
exported: "default",
|
|
104
|
+
id: _hashsum2.default.call(void 0, `${id}default`)
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
if (hotComponents.length) {
|
|
110
|
+
if (hasDefaultExport || ssr) {
|
|
111
|
+
result.code = `${result.code.replaceAll(
|
|
112
|
+
`export default `,
|
|
113
|
+
`const __default__ = `
|
|
114
|
+
)}
|
|
115
|
+
export default __default__`;
|
|
116
|
+
}
|
|
117
|
+
if (!ssr && !/\?vue&type=script/.test(id)) {
|
|
118
|
+
let code = result.code;
|
|
119
|
+
let callbackCode = ``;
|
|
120
|
+
for (const { local, exported, id: id2 } of hotComponents) {
|
|
121
|
+
code += `
|
|
122
|
+
${local}.__hmrId = "${id2}"
|
|
123
|
+
__VUE_HMR_RUNTIME__.createRecord("${id2}", ${local})`;
|
|
124
|
+
callbackCode += `
|
|
125
|
+
__VUE_HMR_RUNTIME__.rerender(mod['${exported}'].__hmrId, mod['${exported}'].setup || mod['${exported}'])`;
|
|
126
|
+
}
|
|
127
|
+
code += `
|
|
128
|
+
if (import.meta.hot) {
|
|
129
|
+
import.meta.hot.accept((mod) => {${callbackCode}
|
|
130
|
+
})
|
|
131
|
+
}`;
|
|
132
|
+
result.code = code;
|
|
133
|
+
}
|
|
134
|
+
if (ssr) {
|
|
135
|
+
result.code += injectSSR(id, hotComponents, _optionalChain([options, 'optionalAccess', _3 => _3.root]));
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
function parseComponentDecls(node, fnNames) {
|
|
140
|
+
const names = [];
|
|
141
|
+
for (const decl of node.declarations) {
|
|
142
|
+
if (decl.id.type === "Identifier" && (isDefineComponentCall(decl.init, fnNames) || _api3.isFunctionalNode.call(void 0, decl.init)))
|
|
143
|
+
names.push(decl.id.name);
|
|
144
|
+
}
|
|
145
|
+
return names;
|
|
146
|
+
}
|
|
147
|
+
function isDefineComponentCall(node, names) {
|
|
148
|
+
return !!(node && node.type === "CallExpression" && node.callee.type === "Identifier" && names.includes(node.callee.name));
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// src/core/runtime.ts?raw
|
|
152
|
+
var runtime_default = 'import {\n effectScope,\n insert,\n isFragment,\n remove,\n renderEffect,\n VaporFragment\n} from "vue";\nexport { shallowRef as useRef } from "vue";\nfunction createFragment(nodes, anchor = document.createTextNode("")) {\n const frag = new VaporFragment(nodes);\n frag.anchor = anchor;\n return frag;\n}\nfunction normalizeValue(value, anchor) {\n if (value instanceof Node || isFragment(value)) {\n anchor && (anchor.textContent = "");\n return value;\n } else if (Array.isArray(value)) {\n anchor && (anchor.textContent = "");\n return createFragment(\n value.map((i) => normalizeValue(i)),\n anchor\n );\n } else {\n const result = value == null || typeof value === "boolean" ? "" : String(value);\n if (anchor) {\n anchor.textContent = result;\n return anchor;\n } else {\n return document.createTextNode(result);\n }\n }\n}\nfunction resolveValue(current, value, anchor) {\n const node = normalizeValue(value, anchor);\n if (current) {\n if (isFragment(current)) {\n const { anchor: anchor2 } = current;\n if (anchor2 && anchor2.parentNode) {\n remove(current.nodes, anchor2.parentNode);\n insert(node, anchor2.parentNode, anchor2);\n anchor2.remove();\n }\n } else if (current instanceof Node) {\n if (isFragment(node) && current.parentNode) {\n insert(node, current.parentNode, current);\n current.remove();\n } else if (node instanceof Node) {\n if (current.nodeType === 3 && node.nodeType === 3) {\n current.textContent = node.textContent;\n return current;\n } else if (current.parentNode) {\n current.parentNode.replaceChild(node, current);\n }\n }\n }\n }\n return node;\n}\nfunction resolveValues(values = [], _anchor) {\n const nodes = [];\n const scopes = [];\n for (const [index, value] of values.entries()) {\n const anchor = index === values.length - 1 ? _anchor : void 0;\n if (typeof value === "function") {\n renderEffect(() => {\n if (scopes[index]) scopes[index].stop();\n scopes[index] = effectScope();\n nodes[index] = scopes[index].run(\n () => resolveValue(nodes[index], value(), anchor)\n );\n });\n } else {\n nodes[index] = resolveValue(nodes[index], value, anchor);\n }\n }\n return nodes;\n}\nexport function setNodes(anchor, ...values) {\n const resolvedValues = resolveValues(values, anchor);\n anchor.parentNode && insert(resolvedValues, anchor.parentNode, anchor);\n}\nexport function createNodes(...values) {\n return resolveValues(values);\n}\n';
|
|
153
|
+
|
|
154
|
+
// src/core/vue-jsx.ts
|
|
155
|
+
var _core = require('@babel/core');
|
|
156
|
+
var _plugintransformtypescript = require('@babel/plugin-transform-typescript'); var _plugintransformtypescript2 = _interopRequireDefault(_plugintransformtypescript);
|
|
157
|
+
var _babelpluginjsx = require('@vue/babel-plugin-jsx'); var _babelpluginjsx2 = _interopRequireDefault(_babelpluginjsx);
|
|
158
|
+
function transformVueJsx(code, id, needSourceMap = false) {
|
|
159
|
+
const result = _core.transformSync.call(void 0, code, {
|
|
160
|
+
plugins: [
|
|
161
|
+
_babelpluginjsx2.default,
|
|
162
|
+
...id.endsWith(".tsx") ? [[_plugintransformtypescript2.default, { isTSX: true, allowExtensions: true }]] : []
|
|
163
|
+
],
|
|
164
|
+
filename: id,
|
|
165
|
+
sourceMaps: needSourceMap,
|
|
166
|
+
sourceFileName: id,
|
|
167
|
+
babelrc: false,
|
|
168
|
+
configFile: false
|
|
169
|
+
});
|
|
170
|
+
if (_optionalChain([result, 'optionalAccess', _4 => _4.code])) {
|
|
171
|
+
return {
|
|
172
|
+
code: result.code,
|
|
173
|
+
map: result.map
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// src/raw.ts
|
|
179
|
+
var plugin = (options = {}) => {
|
|
180
|
+
const transformInclude = _unpluginutils.createFilter.call(void 0,
|
|
181
|
+
_optionalChain([options, 'optionalAccess', _5 => _5.include]) || /\.[cm]?[jt]sx$/,
|
|
182
|
+
_optionalChain([options, 'optionalAccess', _6 => _6.exclude]) || /node_modules/
|
|
183
|
+
);
|
|
184
|
+
let root = "";
|
|
185
|
+
let needHMR = false;
|
|
186
|
+
let needSourceMap = false;
|
|
187
|
+
return [
|
|
188
|
+
{
|
|
189
|
+
name: "vue-jsx-vapor",
|
|
190
|
+
vite: {
|
|
191
|
+
config(config) {
|
|
192
|
+
return {
|
|
193
|
+
// only apply esbuild to ts files
|
|
194
|
+
// since we are handling jsx and tsx now
|
|
195
|
+
esbuild: {
|
|
196
|
+
include: /\.ts$/
|
|
197
|
+
},
|
|
198
|
+
define: {
|
|
199
|
+
__VUE_OPTIONS_API__: _nullishCoalesce(_optionalChain([config, 'access', _7 => _7.define, 'optionalAccess', _8 => _8.__VUE_OPTIONS_API__]), () => ( true)),
|
|
200
|
+
__VUE_PROD_DEVTOOLS__: _nullishCoalesce(_optionalChain([config, 'access', _9 => _9.define, 'optionalAccess', _10 => _10.__VUE_PROD_DEVTOOLS__]), () => ( false)),
|
|
201
|
+
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: _nullishCoalesce(_optionalChain([config, 'access', _11 => _11.define, 'optionalAccess', _12 => _12.__VUE_PROD_HYDRATION_MISMATCH_DETAILS__]), () => ( false))
|
|
202
|
+
}
|
|
203
|
+
};
|
|
204
|
+
},
|
|
205
|
+
configResolved(config) {
|
|
206
|
+
root = config.root;
|
|
207
|
+
needHMR = config.command === "serve";
|
|
208
|
+
needSourceMap = config.command === "serve" || !!config.build.sourcemap;
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
resolveId(id) {
|
|
212
|
+
if (id === ssrRegisterHelperId) return id;
|
|
213
|
+
if (_unpluginutils.normalizePath.call(void 0, id) === "vue-jsx-vapor/runtime") return id;
|
|
214
|
+
},
|
|
215
|
+
loadInclude(id) {
|
|
216
|
+
if (id === ssrRegisterHelperId) return true;
|
|
217
|
+
return _unpluginutils.normalizePath.call(void 0, id) === "vue-jsx-vapor/runtime";
|
|
218
|
+
},
|
|
219
|
+
load(id) {
|
|
220
|
+
if (id === ssrRegisterHelperId) return ssrRegisterHelperCode;
|
|
221
|
+
if (_unpluginutils.normalizePath.call(void 0, id) === "vue-jsx-vapor/runtime") return runtime_default;
|
|
222
|
+
},
|
|
223
|
+
transformInclude,
|
|
224
|
+
transform(code, id, opt) {
|
|
225
|
+
const result = _chunkGY6DSRCVcjs.transformVueJsxVapor.call(void 0, code, id, options, needSourceMap);
|
|
226
|
+
if (_optionalChain([result, 'optionalAccess', _13 => _13.code])) {
|
|
227
|
+
;
|
|
228
|
+
(needHMR || _optionalChain([opt, 'optionalAccess', _14 => _14.ssr])) && injectHMRAndSSR(result, id, { ssr: _optionalChain([opt, 'optionalAccess', _15 => _15.ssr]), root });
|
|
229
|
+
return {
|
|
230
|
+
code: result.code,
|
|
231
|
+
map: result.map
|
|
232
|
+
};
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
name: "@vue-macros/jsx-directive",
|
|
238
|
+
transformInclude,
|
|
239
|
+
transform(code, id, opt) {
|
|
240
|
+
if (options.interop || _optionalChain([opt, 'optionalAccess', _16 => _16.ssr])) {
|
|
241
|
+
return _api.transformJsxDirective.call(void 0, code, id, {
|
|
242
|
+
lib: "vue",
|
|
243
|
+
prefix: "v-",
|
|
244
|
+
version: 3.6
|
|
245
|
+
});
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
name: "@vitejs/plugin-vue-jsx",
|
|
251
|
+
transformInclude,
|
|
252
|
+
transform(code, id, opt) {
|
|
253
|
+
if (options.interop || _optionalChain([opt, 'optionalAccess', _17 => _17.ssr])) {
|
|
254
|
+
return transformVueJsx(code, id, needSourceMap);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
...options.macros === false ? [] : options.macros ? [_raw2.default.call(void 0, options.macros === true ? void 0 : options.macros)] : []
|
|
259
|
+
];
|
|
260
|
+
};
|
|
261
|
+
var raw_default = plugin;
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
exports.raw_default = raw_default;
|
package/dist/esbuild.cjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkF7CI4ATHcjs = require('./chunk-F7CI4ATH.cjs');
|
|
4
4
|
require('./chunk-GODVM7NB.cjs');
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
5
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
6
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
7
7
|
|
|
8
8
|
// src/esbuild.ts
|
|
9
|
-
var esbuild_default =
|
|
9
|
+
var esbuild_default = _chunkF7CI4ATHcjs.unplugin_default.esbuild;
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
exports.default = esbuild_default;
|
package/dist/esbuild.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
unplugin_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-G2KD2VHX.js";
|
|
4
4
|
import "./chunk-JNAGPWSX.js";
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-T3F6TYMY.js";
|
|
6
|
+
import "./chunk-SAJ6WS2A.js";
|
|
7
7
|
|
|
8
8
|
// src/esbuild.ts
|
|
9
9
|
var esbuild_default = unplugin_default.esbuild;
|
package/dist/nuxt.cjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkM4VKLZSBcjs = require('./chunk-M4VKLZSB.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('./chunk-
|
|
6
|
+
var _chunkQBIU4H54cjs = require('./chunk-QBIU4H54.cjs');
|
|
7
|
+
require('./chunk-F7CI4ATH.cjs');
|
|
8
8
|
require('./chunk-GODVM7NB.cjs');
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
10
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
11
11
|
|
|
12
12
|
// src/nuxt.ts
|
|
13
13
|
var _kit = require('@nuxt/kit');
|
|
@@ -18,8 +18,8 @@ var nuxt_default = _kit.defineNuxtModule.call(void 0, {
|
|
|
18
18
|
configKey: "unpluginStarter"
|
|
19
19
|
},
|
|
20
20
|
setup(options) {
|
|
21
|
-
_kit.addVitePlugin.call(void 0, () =>
|
|
22
|
-
_kit.addWebpackPlugin.call(void 0, () =>
|
|
21
|
+
_kit.addVitePlugin.call(void 0, () => _chunkM4VKLZSBcjs.vite_default.call(void 0, options));
|
|
22
|
+
_kit.addWebpackPlugin.call(void 0, () => _chunkQBIU4H54cjs.webpack_default.call(void 0, options));
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
|
package/dist/nuxt.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
vite_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-HNBQ42EP.js";
|
|
4
4
|
import {
|
|
5
5
|
webpack_default
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-4HP6QVER.js";
|
|
7
|
+
import "./chunk-G2KD2VHX.js";
|
|
8
8
|
import "./chunk-JNAGPWSX.js";
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-T3F6TYMY.js";
|
|
10
|
+
import "./chunk-SAJ6WS2A.js";
|
|
11
11
|
|
|
12
12
|
// src/nuxt.ts
|
|
13
13
|
import { addVitePlugin, addWebpackPlugin, defineNuxtModule } from "@nuxt/kit";
|
package/dist/raw.cjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var _chunkVSS2IZIScjs = require('./chunk-VSS2IZIS.cjs');
|
|
4
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.default =
|
|
7
|
+
exports.default = _chunkVSS2IZIScjs.raw_default;
|
|
8
8
|
|
|
9
9
|
module.exports = exports.default;
|
package/dist/raw.js
CHANGED
package/dist/rolldown.cjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkF7CI4ATHcjs = require('./chunk-F7CI4ATH.cjs');
|
|
4
4
|
require('./chunk-GODVM7NB.cjs');
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
5
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
6
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
7
7
|
|
|
8
8
|
// src/rolldown.ts
|
|
9
9
|
var _unplugin = require('unplugin');
|
|
10
|
-
var rolldown_default = _unplugin.createRollupPlugin.call(void 0,
|
|
10
|
+
var rolldown_default = _unplugin.createRollupPlugin.call(void 0, _chunkF7CI4ATHcjs.unpluginFactory);
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
exports.default = rolldown_default;
|
package/dist/rolldown.d.cts
CHANGED
|
@@ -4,6 +4,6 @@ import '@vue-jsx-vapor/compiler';
|
|
|
4
4
|
import '@vue-jsx-vapor/macros';
|
|
5
5
|
import 'unplugin-utils';
|
|
6
6
|
|
|
7
|
-
declare const _default: (options?: Options | undefined) => rollup.Plugin<any>[];
|
|
7
|
+
declare const _default: (options?: Options | undefined) => rollup.Plugin<any> | rollup.Plugin<any>[];
|
|
8
8
|
|
|
9
9
|
export = _default;
|
package/dist/rolldown.d.ts
CHANGED
|
@@ -4,6 +4,6 @@ import '@vue-jsx-vapor/compiler';
|
|
|
4
4
|
import '@vue-jsx-vapor/macros';
|
|
5
5
|
import 'unplugin-utils';
|
|
6
6
|
|
|
7
|
-
declare const _default: (options?: Options | undefined) => rollup.Plugin<any>[];
|
|
7
|
+
declare const _default: (options?: Options | undefined) => rollup.Plugin<any> | rollup.Plugin<any>[];
|
|
8
8
|
|
|
9
9
|
export { _default as default };
|
package/dist/rolldown.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
unpluginFactory
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-G2KD2VHX.js";
|
|
4
4
|
import "./chunk-JNAGPWSX.js";
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-T3F6TYMY.js";
|
|
6
|
+
import "./chunk-SAJ6WS2A.js";
|
|
7
7
|
|
|
8
8
|
// src/rolldown.ts
|
|
9
9
|
import { createRollupPlugin } from "unplugin";
|
package/dist/rollup.cjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkF7CI4ATHcjs = require('./chunk-F7CI4ATH.cjs');
|
|
4
4
|
require('./chunk-GODVM7NB.cjs');
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
5
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
6
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
7
7
|
|
|
8
8
|
// src/rollup.ts
|
|
9
|
-
var rollup_default =
|
|
9
|
+
var rollup_default = _chunkF7CI4ATHcjs.unplugin_default.rollup;
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
exports.default = rollup_default;
|
package/dist/rollup.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
unplugin_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-G2KD2VHX.js";
|
|
4
4
|
import "./chunk-JNAGPWSX.js";
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-T3F6TYMY.js";
|
|
6
|
+
import "./chunk-SAJ6WS2A.js";
|
|
7
7
|
|
|
8
8
|
// src/rollup.ts
|
|
9
9
|
var rollup_default = unplugin_default.rollup;
|
package/dist/rspack.cjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkF7CI4ATHcjs = require('./chunk-F7CI4ATH.cjs');
|
|
4
4
|
require('./chunk-GODVM7NB.cjs');
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
5
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
6
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
7
7
|
|
|
8
8
|
// src/rspack.ts
|
|
9
|
-
var rspack_default =
|
|
9
|
+
var rspack_default = _chunkF7CI4ATHcjs.unplugin_default.rspack;
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
exports.default = rspack_default;
|
package/dist/rspack.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
unplugin_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-G2KD2VHX.js";
|
|
4
4
|
import "./chunk-JNAGPWSX.js";
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-T3F6TYMY.js";
|
|
6
|
+
import "./chunk-SAJ6WS2A.js";
|
|
7
7
|
|
|
8
8
|
// src/rspack.ts
|
|
9
9
|
var rspack_default = unplugin_default.rspack;
|
package/dist/unplugin.cjs
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkF7CI4ATHcjs = require('./chunk-F7CI4ATH.cjs');
|
|
6
6
|
require('./chunk-GODVM7NB.cjs');
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
7
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
8
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.default =
|
|
13
|
+
exports.default = _chunkF7CI4ATHcjs.unplugin_default; exports.unplugin = _chunkF7CI4ATHcjs.unplugin; exports.unpluginFactory = _chunkF7CI4ATHcjs.unpluginFactory;
|
package/dist/unplugin.js
CHANGED
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
unplugin,
|
|
3
3
|
unpluginFactory,
|
|
4
4
|
unplugin_default
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-G2KD2VHX.js";
|
|
6
6
|
import "./chunk-JNAGPWSX.js";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-T3F6TYMY.js";
|
|
8
|
+
import "./chunk-SAJ6WS2A.js";
|
|
9
9
|
export {
|
|
10
10
|
unplugin_default as default,
|
|
11
11
|
unplugin,
|
package/dist/vite.cjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var _chunkM4VKLZSBcjs = require('./chunk-M4VKLZSB.cjs');
|
|
4
|
+
require('./chunk-F7CI4ATH.cjs');
|
|
5
5
|
require('./chunk-GODVM7NB.cjs');
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
7
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkM4VKLZSBcjs.vite_default;
|
|
11
11
|
|
|
12
12
|
module.exports = exports.default;
|
package/dist/vite.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
vite_default
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-HNBQ42EP.js";
|
|
4
|
+
import "./chunk-G2KD2VHX.js";
|
|
5
5
|
import "./chunk-JNAGPWSX.js";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-T3F6TYMY.js";
|
|
7
|
+
import "./chunk-SAJ6WS2A.js";
|
|
8
8
|
export {
|
|
9
9
|
vite_default as default
|
|
10
10
|
};
|
package/dist/webpack.cjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var _chunkQBIU4H54cjs = require('./chunk-QBIU4H54.cjs');
|
|
4
|
+
require('./chunk-F7CI4ATH.cjs');
|
|
5
5
|
require('./chunk-GODVM7NB.cjs');
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-VSS2IZIS.cjs');
|
|
7
|
+
require('./chunk-GY6DSRCV.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkQBIU4H54cjs.webpack_default;
|
|
11
11
|
|
|
12
12
|
module.exports = exports.default;
|
package/dist/webpack.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
webpack_default
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-4HP6QVER.js";
|
|
4
|
+
import "./chunk-G2KD2VHX.js";
|
|
5
5
|
import "./chunk-JNAGPWSX.js";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-T3F6TYMY.js";
|
|
7
|
+
import "./chunk-SAJ6WS2A.js";
|
|
8
8
|
export {
|
|
9
9
|
webpack_default as default
|
|
10
10
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-jsx-vapor",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Convert Vue JSX to Vapor",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -209,14 +209,17 @@
|
|
|
209
209
|
"@babel/core": "^7.26.8",
|
|
210
210
|
"@babel/plugin-transform-typescript": "^7.26.8",
|
|
211
211
|
"@types/hash-sum": "^1.0.2",
|
|
212
|
+
"@vue-macros/jsx-directive": "3.0.0-beta.7",
|
|
212
213
|
"@vue-macros/volar": "^3.0.0-beta.7",
|
|
214
|
+
"@vue/babel-plugin-jsx": "^1.4.0",
|
|
213
215
|
"hash-sum": "^2.0.0",
|
|
216
|
+
"pathe": "^2.0.3",
|
|
214
217
|
"ts-macro": "^0.1.25",
|
|
215
|
-
"unplugin": "^
|
|
218
|
+
"unplugin": "^2.2.2",
|
|
216
219
|
"unplugin-utils": "^0.2.4",
|
|
217
|
-
"@vue-jsx-vapor/
|
|
218
|
-
"@vue-jsx-vapor/
|
|
219
|
-
"@vue-jsx-vapor/macros": "2.
|
|
220
|
+
"@vue-jsx-vapor/compiler": "2.2.0",
|
|
221
|
+
"@vue-jsx-vapor/babel": "2.2.0",
|
|
222
|
+
"@vue-jsx-vapor/macros": "2.2.0"
|
|
220
223
|
},
|
|
221
224
|
"devDependencies": {
|
|
222
225
|
"@nuxt/kit": "^3.16.0",
|