weapp-vite 6.7.4 → 6.7.6
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 +1 -0
- package/dist/auto-import-components/resolvers.mjs +1 -1
- package/dist/auto-routes.mjs +7 -6
- package/dist/{chunk-3ULSPLMB.mjs → chunk-6AH5XOPG.mjs} +2 -2
- package/dist/{chunk-ASAY7IOT.mjs → chunk-6YAZCQOZ.mjs} +2 -2
- package/dist/chunk-BGBLJUWD.mjs +41 -0
- package/dist/{chunk-SE5GHZVY.mjs → chunk-KV5GZOAZ.mjs} +1 -1
- package/dist/{chunk-7ZOXQLE2.mjs → chunk-O2IN5LBB.mjs} +1 -1
- package/dist/{chunk-BQM4WPKJ.mjs → chunk-QD76G22N.mjs} +2 -2
- package/dist/{chunk-72Q2Z45L.mjs → chunk-W3UG2WZQ.mjs} +1 -1
- package/dist/{chunk-VZEM2LX3.mjs → chunk-XIEFUUA5.mjs} +1 -1
- package/dist/{chunk-MXJF2FFF.mjs → chunk-XQYQD5CM.mjs} +1 -1
- package/dist/{chunk-ZVP3HDW7.mjs → chunk-XSPLO6IT.mjs} +2 -2
- package/dist/{chunk-MKXI5POD.mjs → chunk-ZHLTHMZA.mjs} +1065 -691
- package/dist/cli.mjs +275 -243
- package/dist/{config-DMCmCacG.d.ts → config-BngmcXkt.d.ts} +54 -2
- package/dist/config.d.ts +1 -1
- package/dist/config.mjs +16 -4
- package/dist/{file-IRTTGBIN.mjs → file-OMYHHYLC.mjs} +2 -2
- package/dist/{getInstance-NUZWXHEY.mjs → getInstance-W5DSUGSZ.mjs} +5 -4
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +22 -10
- package/dist/json.d.ts +1 -1
- package/dist/json.mjs +2 -2
- package/dist/mcp.d.ts +1 -1
- package/dist/mcp.mjs +3 -3
- package/dist/runtime.mjs +2 -2
- package/dist/types.d.ts +1 -1
- package/dist/types.mjs +2 -2
- package/dist/volar.mjs +1 -1
- package/modules/analyze-dashboard/assets/vue.js +1 -1
- package/package.json +11 -10
|
@@ -16,6 +16,25 @@ import { Buffer } from 'node:buffer';
|
|
|
16
16
|
import { LRUCache } from 'lru-cache';
|
|
17
17
|
import { A as AutoRoutes } from './routes-74eLuiqj.js';
|
|
18
18
|
|
|
19
|
+
declare const WEAPP_VITE_HOST_NAME = "weapp-vite";
|
|
20
|
+
type WeappViteRuntime = 'miniprogram' | 'web';
|
|
21
|
+
interface WeappViteHostMeta {
|
|
22
|
+
name: typeof WEAPP_VITE_HOST_NAME;
|
|
23
|
+
runtime: WeappViteRuntime;
|
|
24
|
+
}
|
|
25
|
+
declare function createWeappViteHostMeta(runtime: WeappViteRuntime): WeappViteHostMeta;
|
|
26
|
+
declare function applyWeappViteHostMeta(config: InlineConfig, runtime: WeappViteRuntime): InlineConfig;
|
|
27
|
+
declare function resolveWeappViteHostMeta(config: Pick<InlineConfig, 'weappVite'> | undefined): WeappViteHostMeta | undefined;
|
|
28
|
+
declare function isWeappViteHost(config: Pick<InlineConfig, 'weappVite'> | undefined): boolean;
|
|
29
|
+
declare module 'vite' {
|
|
30
|
+
interface UserConfig {
|
|
31
|
+
weappVite?: WeappViteHostMeta;
|
|
32
|
+
}
|
|
33
|
+
interface ResolvedConfig {
|
|
34
|
+
weappVite?: WeappViteHostMeta;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
19
38
|
type NpmBuildOptions = InlineConfig;
|
|
20
39
|
type AlipayNpmMode = 'miniprogram_npm' | 'node_modules';
|
|
21
40
|
interface Alias {
|
|
@@ -398,6 +417,27 @@ interface BuildNpmPackageMeta {
|
|
|
398
417
|
name: string;
|
|
399
418
|
entry: InputOption;
|
|
400
419
|
}
|
|
420
|
+
interface NpmSubPackageConfig {
|
|
421
|
+
/**
|
|
422
|
+
* @description 分包本地 npm 依赖范围
|
|
423
|
+
*
|
|
424
|
+
* 当声明该字段后,会为对应分包输出本地 `miniprogram_npm`,
|
|
425
|
+
* 并将分包内命中的 npm 引用本地化到该目录。
|
|
426
|
+
*/
|
|
427
|
+
dependencies?: (string | RegExp)[];
|
|
428
|
+
}
|
|
429
|
+
interface NpmMainPackageConfig {
|
|
430
|
+
/**
|
|
431
|
+
* @description 主包 `miniprogram_npm` 依赖输出范围
|
|
432
|
+
* - `undefined`: 默认行为,按根 `package.json.dependencies` 全量输出到主包
|
|
433
|
+
* - `false`: 禁止输出主包 `miniprogram_npm`
|
|
434
|
+
* - `string[] | RegExp[]`: 仅输出命中的依赖到主包
|
|
435
|
+
*
|
|
436
|
+
* 适用于依赖只希望落在特定分包 `miniprogram_npm` 的场景,
|
|
437
|
+
* 需配合 `weapp.npm.subPackages.<root>.dependencies` 显式声明各分包依赖集。
|
|
438
|
+
*/
|
|
439
|
+
dependencies?: false | (string | RegExp)[];
|
|
440
|
+
}
|
|
401
441
|
type JsFormat = 'cjs' | 'esm';
|
|
402
442
|
type SharedChunkStrategy = 'hoist' | 'duplicate';
|
|
403
443
|
type SharedChunkMode = 'common' | 'path' | 'inline';
|
|
@@ -583,8 +623,20 @@ interface WeappViteConfig {
|
|
|
583
623
|
* cache: true
|
|
584
624
|
*/
|
|
585
625
|
cache?: boolean;
|
|
626
|
+
/**
|
|
627
|
+
* @description 主包本地 npm 构建配置
|
|
628
|
+
*/
|
|
629
|
+
mainPackage?: NpmMainPackageConfig;
|
|
630
|
+
/**
|
|
631
|
+
* @description 分包本地 npm 构建配置
|
|
632
|
+
*
|
|
633
|
+
* 配置后,命中的分包会输出自己的 `miniprogram_npm`,
|
|
634
|
+
* 并将分包内命中的 npm 引用本地化到分包目录。
|
|
635
|
+
*/
|
|
636
|
+
subPackages?: Record<string, NpmSubPackageConfig>;
|
|
586
637
|
/**
|
|
587
638
|
* @description 构建 npm 的配置,可传入 Vite 的库模式配置,让不同的包走不同的配置
|
|
639
|
+
* - 返回值中的 `build.outDir` 同时影响二次 bundle 的依赖与直接复制 `miniprogram` 产物的依赖
|
|
588
640
|
* @example
|
|
589
641
|
* buildOptions: (options, pkg) => {
|
|
590
642
|
* if (pkg.name === 'my-lib') return { ...options, minify: false }
|
|
@@ -620,7 +672,7 @@ interface WeappViteConfig {
|
|
|
620
672
|
* 默认情况下,当一个分包设置了 independent: true 之后会默认启用
|
|
621
673
|
* 可以设置 key: 为 root, value: {independent:true} 来强制启用 独立的 rollup 编译上下文
|
|
622
674
|
*/
|
|
623
|
-
subPackages?: Record<string, Pick<SubPackage, 'independent' | '
|
|
675
|
+
subPackages?: Record<string, Pick<SubPackage, 'independent' | 'inlineConfig'> & {
|
|
624
676
|
autoImportComponents?: AutoImportComponentsOption;
|
|
625
677
|
/** 分包文件变更时是否强制重新生成共享样式产物,默认启用 */
|
|
626
678
|
watchSharedStyles?: boolean;
|
|
@@ -1423,4 +1475,4 @@ declare function defineConfig(config: UserConfigFnPromise): UserConfigFnPromise;
|
|
|
1423
1475
|
declare function defineConfig(config: UserConfigFn): UserConfigFn;
|
|
1424
1476
|
declare function defineConfig(config: UserConfigLoose): UserConfigLoose;
|
|
1425
1477
|
|
|
1426
|
-
export { type
|
|
1478
|
+
export { type GenerateTemplateInlineSource as $, type Alias as A, type BaseEntry as B, type CompilerContext as C, type BuildNpmPackageMeta as D, type ChangeEvent as E, type ChunksConfig as F, type ComponentEntry as G, type ComponentsMap as H, type CopyGlobs as I, type CopyOptions as J, type EnhanceOptions as K, type LoadConfigOptions as L, type EnhanceWxmlOptions as M, type Entry as N, type EntryJsonFragment as O, type GenerateDirsOptions as P, type GenerateExtensionsOptions as Q, type GenerateFileType as R, type GenerateFilenamesOptions as S, type GenerateOptions as T, type UserConfig as U, type GenerateTemplate as V, WEAPP_VITE_HOST_NAME as W, type GenerateTemplateContext as X, type GenerateTemplateEntry as Y, type GenerateTemplateFactory as Z, type GenerateTemplateFileSource as _, type UserConfigExport as a, type GenerateTemplateScope as a0, type GenerateTemplatesConfig as a1, type HandleWxmlOptions as a2, type JsFormat as a3, type JsonConfig as a4, type JsonMergeContext as a5, type JsonMergeFunction as a6, type JsonMergeStage as a7, type JsonMergeStrategy as a8, type MpPlatform as a9, type WeappLibVueTscOptions as aA, type WeappVitePluginApi as aB, type WeappWebConfig as aC, type WxmlDep as aD, type MultiPlatformConfig as aa, type NpmBuildOptions as ab, type NpmMainPackageConfig as ac, type NpmSubPackageConfig as ad, type PageEntry as ae, type ProjectConfig as af, type ResolvedAlias as ag, type ScanComponentItem as ah, type ScanWxmlOptions as ai, type SharedChunkDynamicImports as aj, type SharedChunkMode as ak, type SharedChunkOverride as al, type SharedChunkStrategy as am, type SubPackage as an, type SubPackageMetaValue as ao, type SubPackageStyleConfigEntry as ap, type SubPackageStyleConfigObject as aq, type SubPackageStyleEntry as ar, type SubPackageStyleScope as as, type UserConfig$1 as at, type WeappLibComponentJson as au, type WeappLibConfig as av, type WeappLibDtsOptions as aw, type WeappLibEntryContext as ax, type WeappLibFileName as ay, type WeappLibInternalDtsOptions as az, type UserConfigFn as b, type UserConfigFnNoEnv as c, type UserConfigFnNoEnvPlain as d, type UserConfigFnObject as e, type UserConfigFnObjectPlain as f, type UserConfigFnPromise as g, type WeappViteConfig as h, type WeappViteHostMeta as i, type WeappViteRuntime as j, applyWeappViteHostMeta as k, createWeappViteHostMeta as l, defineAppJson as m, defineComponentJson as n, defineConfig as o, definePageJson as p, defineSitemapJson as q, defineThemeJson as r, isWeappViteHost as s, resolveWeappViteHostMeta as t, type WeappMcpConfig as u, type AliasOptions as v, type AlipayNpmMode as w, type AppEntry as x, type AutoImportComponents as y, type AutoImportComponentsOption as z };
|
package/dist/config.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import 'vite';
|
|
2
|
-
export { U as UserConfig, a as UserConfigExport, b as UserConfigFn, c as UserConfigFnNoEnv, d as UserConfigFnNoEnvPlain, e as UserConfigFnObject, f as UserConfigFnObjectPlain, g as UserConfigFnPromise, W as
|
|
2
|
+
export { U as UserConfig, a as UserConfigExport, b as UserConfigFn, c as UserConfigFnNoEnv, d as UserConfigFnNoEnvPlain, e as UserConfigFnObject, f as UserConfigFnObjectPlain, g as UserConfigFnPromise, W as WEAPP_VITE_HOST_NAME, h as WeappViteConfig, i as WeappViteHostMeta, j as WeappViteRuntime, k as applyWeappViteHostMeta, l as createWeappViteHostMeta, m as defineAppJson, n as defineComponentJson, o as defineConfig, p as definePageJson, q as defineSitemapJson, r as defineThemeJson, s as isWeappViteHost, t as resolveWeappViteHostMeta } from './config-BngmcXkt.js';
|
|
3
3
|
export { App, Component, Page, Sitemap, Theme } from '@weapp-core/schematics';
|
|
4
4
|
import '@weapp-vite/web';
|
|
5
5
|
import 'rolldown';
|
package/dist/config.mjs
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
import {
|
|
2
2
|
defineConfig
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-XQYQD5CM.mjs";
|
|
4
|
+
import {
|
|
5
|
+
WEAPP_VITE_HOST_NAME,
|
|
6
|
+
applyWeappViteHostMeta,
|
|
7
|
+
createWeappViteHostMeta,
|
|
8
|
+
isWeappViteHost,
|
|
9
|
+
resolveWeappViteHostMeta
|
|
10
|
+
} from "./chunk-BGBLJUWD.mjs";
|
|
4
11
|
import {
|
|
5
12
|
defineAppJson,
|
|
6
13
|
defineComponentJson,
|
|
7
14
|
definePageJson,
|
|
8
15
|
defineSitemapJson,
|
|
9
16
|
defineThemeJson
|
|
10
|
-
} from "./chunk-
|
|
11
|
-
import "./chunk-
|
|
17
|
+
} from "./chunk-KV5GZOAZ.mjs";
|
|
18
|
+
import "./chunk-QD76G22N.mjs";
|
|
12
19
|
export {
|
|
20
|
+
WEAPP_VITE_HOST_NAME,
|
|
21
|
+
applyWeappViteHostMeta,
|
|
22
|
+
createWeappViteHostMeta,
|
|
13
23
|
defineAppJson,
|
|
14
24
|
defineComponentJson,
|
|
15
25
|
defineConfig,
|
|
16
26
|
definePageJson,
|
|
17
27
|
defineSitemapJson,
|
|
18
|
-
defineThemeJson
|
|
28
|
+
defineThemeJson,
|
|
29
|
+
isWeappViteHost,
|
|
30
|
+
resolveWeappViteHostMeta
|
|
19
31
|
};
|
|
@@ -4,10 +4,11 @@ import {
|
|
|
4
4
|
getCompilerContext,
|
|
5
5
|
resetCompilerContext,
|
|
6
6
|
setActiveCompilerContextKey
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-ZHLTHMZA.mjs";
|
|
8
|
+
import "./chunk-6AH5XOPG.mjs";
|
|
9
|
+
import "./chunk-BGBLJUWD.mjs";
|
|
10
|
+
import "./chunk-XIEFUUA5.mjs";
|
|
11
|
+
import "./chunk-QD76G22N.mjs";
|
|
11
12
|
export {
|
|
12
13
|
createCompilerContext,
|
|
13
14
|
getActiveCompilerContextKey,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as LoadConfigOptions, C as CompilerContext } from './config-
|
|
2
|
-
export { U as UserConfig, a as UserConfigExport, b as UserConfigFn, c as UserConfigFnNoEnv, d as UserConfigFnNoEnvPlain, e as UserConfigFnObject, f as UserConfigFnObjectPlain, g as UserConfigFnPromise, W as
|
|
1
|
+
import { L as LoadConfigOptions, C as CompilerContext } from './config-BngmcXkt.js';
|
|
2
|
+
export { U as UserConfig, a as UserConfigExport, b as UserConfigFn, c as UserConfigFnNoEnv, d as UserConfigFnNoEnvPlain, e as UserConfigFnObject, f as UserConfigFnObjectPlain, g as UserConfigFnPromise, W as WEAPP_VITE_HOST_NAME, h as WeappViteConfig, i as WeappViteHostMeta, j as WeappViteRuntime, k as applyWeappViteHostMeta, l as createWeappViteHostMeta, m as defineAppJson, n as defineComponentJson, o as defineConfig, p as definePageJson, q as defineSitemapJson, r as defineThemeJson, s as isWeappViteHost, t as resolveWeappViteHostMeta } from './config-BngmcXkt.js';
|
|
3
3
|
export { WevuComponentOptions, defineEmits, defineProps } from './runtime.js';
|
|
4
4
|
export { RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, WatchOptions as RolldownWatchOptions, RolldownWatcher } from 'rolldown';
|
|
5
5
|
export { ConfigEnv, InlineConfig, Plugin, PluginOption, ResolvedConfig, ViteDevServer } from 'vite';
|
package/dist/index.mjs
CHANGED
|
@@ -1,33 +1,43 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-O2IN5LBB.mjs";
|
|
2
2
|
import {
|
|
3
3
|
createCompilerContext
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-XSPLO6IT.mjs";
|
|
5
|
+
import "./chunk-ZHLTHMZA.mjs";
|
|
6
|
+
import "./chunk-6AH5XOPG.mjs";
|
|
7
7
|
import {
|
|
8
8
|
defineConfig
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-XQYQD5CM.mjs";
|
|
10
|
+
import {
|
|
11
|
+
WEAPP_VITE_HOST_NAME,
|
|
12
|
+
applyWeappViteHostMeta,
|
|
13
|
+
createWeappViteHostMeta,
|
|
14
|
+
isWeappViteHost,
|
|
15
|
+
resolveWeappViteHostMeta
|
|
16
|
+
} from "./chunk-BGBLJUWD.mjs";
|
|
10
17
|
import {
|
|
11
18
|
defineAppJson,
|
|
12
19
|
defineComponentJson,
|
|
13
20
|
definePageJson,
|
|
14
21
|
defineSitemapJson,
|
|
15
22
|
defineThemeJson
|
|
16
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-KV5GZOAZ.mjs";
|
|
17
24
|
import {
|
|
18
25
|
defineEmits,
|
|
19
26
|
defineProps
|
|
20
|
-
} from "./chunk-
|
|
21
|
-
import "./chunk-
|
|
27
|
+
} from "./chunk-W3UG2WZQ.mjs";
|
|
28
|
+
import "./chunk-XIEFUUA5.mjs";
|
|
22
29
|
import {
|
|
23
30
|
init_esm_shims
|
|
24
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-QD76G22N.mjs";
|
|
25
32
|
|
|
26
33
|
// src/index.ts
|
|
27
34
|
init_esm_shims();
|
|
28
35
|
import { createWevuComponent } from "wevu";
|
|
29
36
|
export {
|
|
37
|
+
WEAPP_VITE_HOST_NAME,
|
|
38
|
+
applyWeappViteHostMeta,
|
|
30
39
|
createCompilerContext,
|
|
40
|
+
createWeappViteHostMeta,
|
|
31
41
|
createWevuComponent,
|
|
32
42
|
defineAppJson,
|
|
33
43
|
defineComponentJson,
|
|
@@ -36,5 +46,7 @@ export {
|
|
|
36
46
|
definePageJson,
|
|
37
47
|
defineProps,
|
|
38
48
|
defineSitemapJson,
|
|
39
|
-
defineThemeJson
|
|
49
|
+
defineThemeJson,
|
|
50
|
+
isWeappViteHost,
|
|
51
|
+
resolveWeappViteHostMeta
|
|
40
52
|
};
|
package/dist/json.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { App, Component, Page, Sitemap, Theme } from '@weapp-core/schematics';
|
|
2
|
-
export {
|
|
2
|
+
export { m as defineAppJson, n as defineComponentJson, p as definePageJson, q as defineSitemapJson, r as defineThemeJson } from './config-BngmcXkt.js';
|
|
3
3
|
import 'vite';
|
|
4
4
|
import '@weapp-vite/web';
|
|
5
5
|
import 'rolldown';
|
package/dist/json.mjs
CHANGED
package/dist/mcp.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CreateServerOptions } from '@weapp-vite/mcp';
|
|
2
2
|
export { CreateServerOptions, createWeappViteMcpServer } from '@weapp-vite/mcp';
|
|
3
|
-
import {
|
|
3
|
+
import { u as WeappMcpConfig } from './config-BngmcXkt.js';
|
|
4
4
|
import 'vite';
|
|
5
5
|
import '@weapp-core/schematics';
|
|
6
6
|
import '@weapp-vite/web';
|
package/dist/mcp.mjs
CHANGED
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
createWeappViteMcpServer,
|
|
6
6
|
resolveWeappMcpConfig,
|
|
7
7
|
startWeappViteMcpServer
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
8
|
+
} from "./chunk-6YAZCQOZ.mjs";
|
|
9
|
+
import "./chunk-XIEFUUA5.mjs";
|
|
10
|
+
import "./chunk-QD76G22N.mjs";
|
|
11
11
|
export {
|
|
12
12
|
DEFAULT_MCP_ENDPOINT,
|
|
13
13
|
DEFAULT_MCP_HOST,
|
package/dist/runtime.mjs
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as Alias,
|
|
1
|
+
export { A as Alias, v as AliasOptions, w as AlipayNpmMode, x as AppEntry, y as AutoImportComponents, z as AutoImportComponentsOption, B as BaseEntry, D as BuildNpmPackageMeta, E as ChangeEvent, F as ChunksConfig, G as ComponentEntry, H as ComponentsMap, I as CopyGlobs, J as CopyOptions, K as EnhanceOptions, M as EnhanceWxmlOptions, N as Entry, O as EntryJsonFragment, P as GenerateDirsOptions, Q as GenerateExtensionsOptions, R as GenerateFileType, S as GenerateFilenamesOptions, T as GenerateOptions, V as GenerateTemplate, X as GenerateTemplateContext, Y as GenerateTemplateEntry, Z as GenerateTemplateFactory, _ as GenerateTemplateFileSource, $ as GenerateTemplateInlineSource, a0 as GenerateTemplateScope, a1 as GenerateTemplatesConfig, a2 as HandleWxmlOptions, a3 as JsFormat, a4 as JsonConfig, a5 as JsonMergeContext, a6 as JsonMergeFunction, a7 as JsonMergeStage, a8 as JsonMergeStrategy, a9 as MpPlatform, aa as MultiPlatformConfig, ab as NpmBuildOptions, ac as NpmMainPackageConfig, ad as NpmSubPackageConfig, ae as PageEntry, af as ProjectConfig, ag as ResolvedAlias, ah as ScanComponentItem, ai as ScanWxmlOptions, aj as SharedChunkDynamicImports, ak as SharedChunkMode, al as SharedChunkOverride, am as SharedChunkStrategy, an as SubPackage, ao as SubPackageMetaValue, ap as SubPackageStyleConfigEntry, aq as SubPackageStyleConfigObject, ar as SubPackageStyleEntry, as as SubPackageStyleScope, at as UserConfig, au as WeappLibComponentJson, av as WeappLibConfig, aw as WeappLibDtsOptions, ax as WeappLibEntryContext, ay as WeappLibFileName, az as WeappLibInternalDtsOptions, aA as WeappLibVueTscOptions, u as WeappMcpConfig, h as WeappViteConfig, i as WeappViteHostMeta, aB as WeappVitePluginApi, j as WeappViteRuntime, aC as WeappWebConfig, aD as WxmlDep } from './config-BngmcXkt.js';
|
|
2
2
|
export { RolldownBuild, RolldownOptions, RolldownOutput, RolldownPlugin, RolldownPluginOption, WatchOptions as RolldownWatchOptions, RolldownWatcher } from 'rolldown';
|
|
3
3
|
export { ConfigEnv, InlineConfig, Plugin, PluginOption, ResolvedConfig, ViteDevServer } from 'vite';
|
|
4
4
|
export { ComputedDefinitions, MethodDefinitions, Ref } from 'wevu';
|
package/dist/types.mjs
CHANGED