1 Star 2 Fork 0

klmahua/lx-music-mobile

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dependencies-patch.js 647 Bytes
一键复制 编辑 原始数据 按行查看 历史
lyswhut 提交于 2024-02-20 21:49 . 更新依赖
// 修补依赖源码以使构建的依赖恢复正常工作
const fs = require('node:fs')
const path = require('node:path')
const rootPath = path.join(__dirname, './')
const patchs = [
]
;(async() => {
for (const [filePath, fromStr, toStr] of patchs) {
console.log(`Patching ${filePath.replace(rootPath, '')}`)
try {
const file = (await fs.promises.readFile(filePath)).toString()
await fs.promises.writeFile(filePath, file.replace(fromStr, toStr))
} catch (err) {
console.error(`Patch ${filePath.replace(rootPath, '')} failed: ${err.message}`)
}
}
console.log('\nDependencies patch finished.\n')
})()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/klmahuaw/lx-music-mobile.git
git@gitee.com:klmahuaw/lx-music-mobile.git
klmahuaw
lx-music-mobile
lx-music-mobile
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385