create-cookbook 1.0.0-beta.23 → 1.0.0-beta.24
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/index.mjs +1 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -115,7 +115,7 @@ const color = gradient(["cyan", "#2d9b87"]);
|
|
|
115
115
|
|
|
116
116
|
consola.success(color("[2/2] Installing.."));
|
|
117
117
|
await utils.mvToPathAndInstall(installPath, join(tempspace, "package"), process.platform === "win32" ? "co.exe" : "co");
|
|
118
|
-
await utils.mvUIDir(join(tempspace, "ui", "package"));
|
|
118
|
+
// await utils.mvUIDir(join(tempspace, "ui", "package"));
|
|
119
119
|
await utils.tempspaceClean(tempspace);
|
|
120
120
|
consola.success(color("[2/2] Installed!"));
|
|
121
121
|
|