purescript-axon/rename.js
2024-12-01 16:27:17 -06:00

15 lines
490 B
JavaScript

import File from 'fs/promises'
import Path from 'path'
const contents = new Map()
const files = (await File.readdir('./src', {recursive: true})).map(a => Path.resolve('./src', a)).filter(a => a.endsWith('.purs') || a.endsWith('.js'))
for (const f of files) {
const fc = await File.readFile(f, 'utf8')
const fc_ = fc.replaceAll(/\bTower\b/g, 'Axon')
await File.writeFile(f, fc_)
const f_ = f.replace(/\bTower\b/, 'Axon')
await File.rename(f, f_)
console.log(`${f} -> ${f_}`)
}