v0-scf
Version:
腾讯云无服务器函数SCF命令行辅助工具
19 lines (17 loc) • 565 B
JavaScript
const fs = require('fs');
const fse = require('fs-extra');
const chalk = require('chalk');
const { SCF } = require('wqcloud');
const { globalPath, localPath } = require('../config');
module.exports = () => {
if (!fs.existsSync(localPath) && !fs.existsSync(globalPath)) {
// eslint-disable-next-line no-console
console.log(chalk`请先执行 {red.bold csf loign} 进行登录`);
process.exit(0);
}
const config = fse.readJSONSync(fs.existsSync(localPath) ? localPath : globalPath);
return SCF({
...config,
Version: '2018-04-16'
});
};