@lark.js/mvc 0.0.9 → 0.0.11
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 +10 -32
- package/dist/chunk-RIV4NK3K.js +108 -0
- package/dist/compiler.cjs +733 -193
- package/dist/compiler.d.cts +35 -35
- package/dist/compiler.d.ts +35 -35
- package/dist/compiler.js +730 -193
- package/dist/devtool.cjs +3421 -0
- package/dist/devtool.d.cts +83 -0
- package/dist/devtool.d.ts +83 -0
- package/dist/devtool.js +3333 -0
- package/dist/index.cjs +811 -319
- package/dist/index.d.cts +247 -491
- package/dist/index.d.ts +247 -491
- package/dist/index.js +808 -280
- package/dist/rspack.cjs +15978 -0
- package/dist/rspack.d.cts +122 -0
- package/dist/rspack.d.ts +122 -0
- package/dist/{chunk-3HSA7OHB.js → rspack.js} +809 -193
- package/dist/runtime.cjs +35 -10
- package/dist/runtime.d.cts +22 -13
- package/dist/runtime.d.ts +22 -13
- package/dist/runtime.js +13 -34
- package/dist/vite.cjs +753 -195
- package/dist/vite.d.cts +3 -0
- package/dist/vite.d.ts +3 -0
- package/dist/vite.js +15917 -10
- package/dist/webpack.cjs +798 -201
- package/dist/webpack.d.cts +60 -4
- package/dist/webpack.d.ts +60 -4
- package/dist/webpack.js +15962 -14
- package/package.json +25 -2
package/dist/vite.d.cts
CHANGED
|
@@ -29,10 +29,13 @@ import { Plugin } from 'vite';
|
|
|
29
29
|
*
|
|
30
30
|
* @param options - Plugin options
|
|
31
31
|
* @param options.debug - Enable debug mode with line tracking (default: false)
|
|
32
|
+
* @param options.virtualDom - Generate VDOM output instead of HTML string (default: false)
|
|
32
33
|
* @returns Vite plugin instance
|
|
33
34
|
*/
|
|
34
35
|
declare function larkMvcPlugin(options?: {
|
|
35
36
|
debug?: boolean;
|
|
37
|
+
virtualDom?: boolean;
|
|
38
|
+
useSwc?: boolean;
|
|
36
39
|
}): Plugin;
|
|
37
40
|
|
|
38
41
|
export { larkMvcPlugin as default, larkMvcPlugin };
|
package/dist/vite.d.ts
CHANGED
|
@@ -29,10 +29,13 @@ import { Plugin } from 'vite';
|
|
|
29
29
|
*
|
|
30
30
|
* @param options - Plugin options
|
|
31
31
|
* @param options.debug - Enable debug mode with line tracking (default: false)
|
|
32
|
+
* @param options.virtualDom - Generate VDOM output instead of HTML string (default: false)
|
|
32
33
|
* @returns Vite plugin instance
|
|
33
34
|
*/
|
|
34
35
|
declare function larkMvcPlugin(options?: {
|
|
35
36
|
debug?: boolean;
|
|
37
|
+
virtualDom?: boolean;
|
|
38
|
+
useSwc?: boolean;
|
|
36
39
|
}): Plugin;
|
|
37
40
|
|
|
38
41
|
export { larkMvcPlugin as default, larkMvcPlugin };
|