@xiaou66/vite-plugin-vue-mcp-next 0.0.7 → 0.0.8
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/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -446,8 +446,8 @@ interface PageTargetRegistry {
|
|
|
446
446
|
interface VueMcpNextContext {
|
|
447
447
|
/** 解析后的安全配置,所有内部模块只能读取该配置,不能再次直接读取用户原始配置。 */
|
|
448
448
|
readonly options: ResolvedVueMcpNextOptions;
|
|
449
|
-
/** 当前 Vite
|
|
450
|
-
|
|
449
|
+
/** 当前 Vite 开发服务器实例,configureServer 阶段自动写入,供需要项目根目录的服务端工具复用。 */
|
|
450
|
+
server?: ViteDevServer;
|
|
451
451
|
/** 跨 RPC 请求的事件总线,用于复用参考项目的事件回传模型。 */
|
|
452
452
|
readonly hooks: Hookable;
|
|
453
453
|
/** Vue Runtime Bridge 的服务端 RPC 代理,Vue 专属工具通过它请求浏览器页面返回组件语义数据。 */
|
package/dist/index.d.ts
CHANGED
|
@@ -446,8 +446,8 @@ interface PageTargetRegistry {
|
|
|
446
446
|
interface VueMcpNextContext {
|
|
447
447
|
/** 解析后的安全配置,所有内部模块只能读取该配置,不能再次直接读取用户原始配置。 */
|
|
448
448
|
readonly options: ResolvedVueMcpNextOptions;
|
|
449
|
-
/** 当前 Vite
|
|
450
|
-
|
|
449
|
+
/** 当前 Vite 开发服务器实例,configureServer 阶段自动写入,供需要项目根目录的服务端工具复用。 */
|
|
450
|
+
server?: ViteDevServer;
|
|
451
451
|
/** 跨 RPC 请求的事件总线,用于复用参考项目的事件回传模型。 */
|
|
452
452
|
readonly hooks: Hookable;
|
|
453
453
|
/** Vue Runtime Bridge 的服务端 RPC 代理,Vue 专属工具通过它请求浏览器页面返回组件语义数据。 */
|
package/dist/index.js
CHANGED