mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
BREAKING CHANGE: This library no longer supports using `tweetnacl` as an encryption library due to Discord deprecating the algorithms that `tweetnacl` helped us support (read more [here](https://discord.com/developers/docs/change-log#voice-encryption-modes)). Please migrate to one of: `sodium-native`, `sodium`, `@stablelib/xchacha20poly1305`, `@noble/ciphers` or `libsodium-wrappers` unless your system supports `aes-256-gcm` (verify by running `require('node:crypto').getCiphers().includes('aes-256-gcm')`). --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> Co-authored-by: Vlad Frangu <me@vladfrangu.dev>
10 lines
288 B
JavaScript
10 lines
288 B
JavaScript
import { readFile, writeFile } from 'node:fs/promises';
|
|
|
|
const data = await readFile('./dist/index.mjs', 'utf8');
|
|
await writeFile(
|
|
'./dist/index.mjs',
|
|
`import { createRequire as topLevelCreateRequire } from "module";
|
|
const require = topLevelCreateRequire(import.meta.url);
|
|
${data}`,
|
|
);
|