mirror of
https://github.com/antfu-collective/icones.git
synced 2026-01-09 07:40:49 +08:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import { promises as fs } from 'node:fs'
|
|
|
|
;
|
|
|
|
(async () => {
|
|
const path = './index.html'
|
|
const file = await fs.readFile(path, 'utf-8')
|
|
await fs.writeFile(path, file.replace(/\/lib/g, '//lib'), 'utf-8')
|
|
})()
|