.profile/scripts/generator.js

26 lines
567 B
JavaScript

const fs = require('fs')
const path = require('path')
class Generator {
constructor(filePath) {
const dist = path.resolve(__dirname, filePath)
this.dist = dist
this.content = fs.readFileSync(dist, { encoding: 'utf-8' })
}
render(name, newContent) {
if (!name) return
const reg = new RegExp(`<!-- ${name}_start -->([\\s\\S]*?)<!-- ${name}_end -->`, 'mg')
this.content = this.content.replace(reg, newContent)
}
update() {
fs.writeFileSync(this.dist, this.content, { encoding: 'utf-8' })
}
}
module.exports = { Generator }