加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
clean.js 469 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joel Chu 提交于 2021-05-21 23:22 . templates copy add to clean action
// use fs-extra to clean folder instead of command line makes it cross platform
const fsx = require('fs-extra')
const { join } = require('path')
const dirs = ['dist', 'build']
dirs.forEach(dir => {
fsx.removeSync(join(__dirname, dir))
})
// add one more action just copy the README.md to README.en.md
fsx.remove('./README.en.md', () => {
fsx.copy('./README.md', './README.en.md')
})
// also need to copy over the tpl files
fsx.copy('./src/tpl', './dist/tpl')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化