yyy-cli
Version:
development theme command line tool
22 lines (20 loc) • 486 B
JavaScript
/*
* @Descripttion:
* @version:
* @Author: Jeson
* @Date: 1985-10-26 16:15:00
* @LastEditors: Jeson
* @LastEditTime: 2021-06-21 17:24:02
*/
const {showInfo, log, chalk, successInfo} = require("./handle"),
{version} = require("./version"),
MakeInit = require("./index");
exports.getInfo = () => {
showInfo('YYY-FE-CLI');
version();
successInfo('YYY-FE');
};
exports.initDev = () => {
showInfo('YYY-FE-INIT');
MakeInit();
};