mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 08:20:58 -05:00
7aa44c48ce
Also, GitHub should no longer emit warnings when someone uses them. Closes #13
10 lines
425 B
TypeScript
10 lines
425 B
TypeScript
import fs from "fs";
|
|
|
|
export default function fixDeprecatedBuffer() {
|
|
const files = fs.readdirSync("./dist", { withFileTypes: true });
|
|
for (const file of files.filter(x => x.isFile())) {
|
|
const content = fs.readFileSync(`./dist/${file.name}`, "utf8");
|
|
const fixedContent = content.replace(/new Buffer\(/g, "Buffer.from(");
|
|
fs.writeFileSync(`./dist/${file.name}`, fixedContent, "utf8");
|
|
}
|
|
}
|