UNPKG

cevuel-cli

Version:

Create element-ui project with vue<br/> Help you build a new project faster with configuration and title

14 lines (11 loc) 308 B
#!/usr/bin/env node const fs = require('fs'); const chalk = require('chalk'); function handleMd(from, to, options) { const ContextMD = fs.readFileSync(from, 'utf8'); fs.writeFileSync(to, ContextMD, 'utf8'); console.log(chalk.yellow('Copy Successed')); } module.exports = { handleMd }