1 Star 0 Fork 3

落泉之竹/tiny-vue-theme

forked from OpenTiny/tiny-vue-theme 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deletejs.js 484 Bytes
一键复制 编辑 原始数据 按行查看 历史
const fs = require('fs-extra')
const path = require('path')
const dist = path.join(__dirname, 'dist')
const indexJs = path.join(dist, 'index.js')
if (fs.existsSync(indexJs)) {
fs.removeSync(indexJs)
}
fs.readdirSync(dist).forEach((item) => {
const childPath = path.join(dist, item)
const stat = fs.statSync(childPath)
if (stat.isDirectory()) {
const indexJs = path.join(childPath, 'index.js')
if (fs.existsSync(indexJs)) {
fs.removeSync(indexJs)
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiyulong/tiny-vue-theme.git
git@gitee.com:jiyulong/tiny-vue-theme.git
jiyulong
tiny-vue-theme
tiny-vue-theme
dev

搜索帮助