@vureact/compiler-core 1.0.3 → 1.1.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/README.md +278 -1
- package/README.zh.md +280 -0
- package/lib/{chunk-BVCPVRCO.esm.js → chunk-37YHAUPX.esm.js} +327 -151
- package/lib/{chunk-E542D3GC.js → chunk-P26R53VO.js} +359 -183
- package/lib/cli.esm.js +14 -4
- package/lib/cli.js +21 -11
- package/lib/compiler-core.d.cts +92 -53
- package/lib/compiler-core.d.ts +92 -53
- package/lib/compiler-core.esm.js +2 -2
- package/lib/compiler-core.js +3 -3
- package/package.json +1 -1
package/lib/compiler-core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});/**
|
|
2
|
-
* @vureact/compiler-core v1.0
|
|
2
|
+
* @vureact/compiler-core v1.1.0
|
|
3
3
|
* (c) 2025-present Ruihong Zhong (Ryan John)
|
|
4
4
|
* @license MIT
|
|
5
5
|
*/
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var
|
|
21
|
+
var _chunkP26R53VOjs = require('./chunk-P26R53VO.js');
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -33,4 +33,4 @@ var _chunkE542D3GCjs = require('./chunk-E542D3GC.js');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
exports.BaseCompiler =
|
|
36
|
+
exports.BaseCompiler = _chunkP26R53VOjs.BaseCompiler; exports.CacheKey = _chunkP26R53VOjs.CacheKey; exports.FileCompiler = _chunkP26R53VOjs.FileCompiler; exports.Helper = _chunkP26R53VOjs.Helper; exports.VuReact = _chunkP26R53VOjs.VuReact; exports.defineConfig = _chunkP26R53VOjs.defineConfig; exports.generate = _chunkP26R53VOjs.generate; exports.generateComponent = _chunkP26R53VOjs.generateComponent; exports.generateOnlyScript = _chunkP26R53VOjs.generateOnlyScript; exports.parse = _chunkP26R53VOjs.parse; exports.parseOnlyScript = _chunkP26R53VOjs.parseOnlyScript; exports.parseSFC = _chunkP26R53VOjs.parseSFC; exports.transform = _chunkP26R53VOjs.transform;
|
package/package.json
CHANGED