Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.119.103.13
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
webpack /
lib /
electron /
Delete
Unzip
Name
Size
Permission
Date
Action
ElectronTargetPlugin.js
1.33
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const ExternalsPlugin = require("../ExternalsPlugin"); /** @typedef {import("../Compiler")} Compiler */ class ElectronTargetPlugin { /** * @param {"main" | "preload" | "renderer"=} context in main, preload or renderer context? */ constructor(context) { this._context = context; } /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { new ExternalsPlugin("node-commonjs", [ "clipboard", "crash-reporter", "electron", "ipc", "native-image", "original-fs", "screen", "shell" ]).apply(compiler); switch (this._context) { case "main": new ExternalsPlugin("node-commonjs", [ "app", "auto-updater", "browser-window", "content-tracing", "dialog", "global-shortcut", "ipc-main", "menu", "menu-item", "power-monitor", "power-save-blocker", "protocol", "session", "tray", "web-contents" ]).apply(compiler); break; case "preload": case "renderer": new ExternalsPlugin("node-commonjs", [ "desktop-capturer", "ipc-renderer", "remote", "web-frame" ]).apply(compiler); break; } } } module.exports = ElectronTargetPlugin;