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) 295 B
#!/usr/bin/env node const fs = require('fs'); const chalk = require('chalk'); function handleImg(from, to, options) { const ContextIMG = fs.readFileSync(from); fs.writeFileSync(to, ContextIMG); console.log(chalk.yellow('Copy Successed')); } module.exports = { handleImg }