1 Star 0 Fork 15

jade/unicloud-router-iview-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.js 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
落魄实习生 提交于 2020-08-27 16:45 . 修改api云函数
const {
exec
} = require("child_process");
function init() {
exec("npm install", (error, stdout, stderr) => {
if (error) {
console.error(`执行install出错`);
return;
}
const {
say
} = require("cfonts");
const chalk = require("chalk");
say("unicloudAdmin", {
colors: ["yellow"],
font: "simple",
space: true,
});
console.log(
chalk.blue("┏ 正在使用安装NPM依赖 -----------------") + "\n"
);
exec(
"cd cloudfunctions-aliyun/api && npm install",
(error, stdout, stderr) => {
console.log(stdout)
if (error) {
console.error(`执行安装云开发环境出错`);
return;
}
console.log(
chalk.blue("┗ 安装完毕 ----------------------------") + "\n"
);
console.log(chalk.bold.red(" 请继续使用HBuilderx运行服务") + "\n");
console.log(chalk.yellow(" --------------- 鸣谢 ----------------"));
console.log(chalk.yellow("| |"));
console.log(chalk.yellow("| 开源不易,需要鼓励 |"));
console.log(chalk.yellow("| By: 落魄实习生(Mouxan) |"));
console.log(chalk.yellow("| 如有其他问题请联系: |"));
console.log(chalk.yellow("| QQ: 455171924 |"));
console.log(chalk.yellow("| 邮箱: [email protected] |"));
console.log(chalk.yellow("| |"));
console.log(
chalk.yellow(" -------------------------------------") + "\n"
);
}
);
});
}
init();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jade07/unicloud-router-iview-admin.git
[email protected]:jade07/unicloud-router-iview-admin.git
jade07
unicloud-router-iview-admin
unicloud-router-iview-admin
master

搜索帮助