wot-design-uni/build/changelog.js
2023-08-02 18:03:27 +08:00

23 lines
720 B
JavaScript

/*
* @Author: weisheng
* @Date: 2022-02-24 15:37:04
* @LastEditTime: 2023-08-02 17:52:00
* @LastEditors: weisheng
* @Description: 讲生成的changelog移动到文档和组件中
* @FilePath: \wot-design-uni\build\changelog.js
* 记得注释
*/
const fs = require('fs')
const path = require('path')
const fromPath = path.resolve(__dirname, '../CHANGELOG.md')
const toPath = path.resolve(__dirname, '../src/uni_modules/wot-design-uni')
const docPath = path.resolve(__dirname, '../docs/guide')
try {
const file = fs.readFileSync(fromPath, 'utf-8')
fs.writeFileSync(`${toPath}/changelog.md`, file)
fs.writeFileSync(`${docPath}/changelog.md`, file)
} catch (error) {
console.log('CHANGELOG 获取失败')
}