@4399ywkf/cli 0.0.18 → 0.0.19
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/cli.js +10 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -85,7 +85,7 @@ const chalk = require$$7;
|
|
|
85
85
|
const boxen = require$$8;
|
|
86
86
|
const figlet = require$$9;
|
|
87
87
|
const pkgInfo = {
|
|
88
|
-
version: "0.0.
|
|
88
|
+
version: "0.0.19",
|
|
89
89
|
};
|
|
90
90
|
|
|
91
91
|
// 美化输出函数
|
|
@@ -386,13 +386,21 @@ program
|
|
|
386
386
|
},
|
|
387
387
|
},
|
|
388
388
|
{
|
|
389
|
-
name: `${chalk.
|
|
389
|
+
name: `${chalk.magenta("⚡ Vite 主应用")} - 高性能微前端主应用`,
|
|
390
390
|
value: {
|
|
391
391
|
architecture: "microFrontend",
|
|
392
392
|
tool: "vite",
|
|
393
393
|
direction: "main",
|
|
394
394
|
},
|
|
395
395
|
},
|
|
396
|
+
{
|
|
397
|
+
name: `${chalk.cyan("🔧 Vite 子应用")} - 高性能微前端子应用`,
|
|
398
|
+
value: {
|
|
399
|
+
architecture: "microFrontend",
|
|
400
|
+
tool: "vite",
|
|
401
|
+
direction: "sub",
|
|
402
|
+
},
|
|
403
|
+
},
|
|
396
404
|
{
|
|
397
405
|
name: `${chalk.yellow("📱 Next.js 应用")} - 全栈应用`,
|
|
398
406
|
value: { architecture: "standalone", framework: "nextjs" },
|