mdk-skills 2.1.13 → 2.1.15
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/package.json
CHANGED
package/scripts/web-ui/server.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const fs = require("fs");
|
|
2
2
|
const path = require("path");
|
|
3
3
|
const { createServer: createViteServer } = require("vite");
|
|
4
|
+
const vue = require("@vitejs/plugin-vue");
|
|
4
5
|
const core = require("../core");
|
|
5
6
|
|
|
6
7
|
// ---------- 路径(与 cli.js 保持一致) ----------
|
|
@@ -432,6 +433,7 @@ async function startUI() {
|
|
|
432
433
|
root: __dirname,
|
|
433
434
|
server: { port: 3344, open: false },
|
|
434
435
|
plugins: [
|
|
436
|
+
vue(),
|
|
435
437
|
{
|
|
436
438
|
name: "api-routes",
|
|
437
439
|
configureServer(viteServer) {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<div class="status-divider" />
|
|
22
22
|
<div class="status-item">
|
|
23
23
|
<n-icon size="18" :color="data.hasClaudeMd ? '#18a058' : '#d03050'">
|
|
24
|
-
<
|
|
24
|
+
<DescriptionOutlined />
|
|
25
25
|
</n-icon>
|
|
26
26
|
<span>CLAUDE.md {{ data.hasClaudeMd ? "已就绪" : "未创建" }}</span>
|
|
27
27
|
</div>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
<script setup>
|
|
32
32
|
import { CheckmarkCircleOutline } from "@vicons/ionicons5";
|
|
33
|
-
import { SwapOutlined,
|
|
33
|
+
import { SwapOutlined, DescriptionOutlined } from "@vicons/material";
|
|
34
34
|
|
|
35
35
|
defineProps({
|
|
36
36
|
data: {
|