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.216.95.250
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
laravel-mix /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
builder
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
components
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
tasks
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
webpackPlugins
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
Api.js
1.96
KB
-rw-r--r--
2021-02-04 21:24
Assert.js
1.97
KB
-rw-r--r--
2021-02-04 21:24
Dependencies.js
1.42
KB
-rw-r--r--
2021-02-04 21:24
Dispatcher.js
887
B
-rw-r--r--
2021-02-04 21:24
File.js
5.37
KB
-rw-r--r--
2021-02-04 21:24
FileCollection.js
2.52
KB
-rw-r--r--
2021-02-04 21:24
Manifest.js
2.95
KB
-rw-r--r--
2021-02-04 21:24
Mix.js
2.41
KB
-rw-r--r--
2021-02-04 21:24
Paths.js
920
B
-rw-r--r--
2021-02-04 21:24
StandaloneSass.js
3.77
KB
-rw-r--r--
2021-02-04 21:24
config.js
6.84
KB
-rw-r--r--
2021-02-04 21:24
helpers.js
1.04
KB
-rw-r--r--
2021-02-04 21:24
index.js
1.83
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
let Paths = require('./Paths'); let Manifest = require('./Manifest'); let Dispatcher = require('./Dispatcher'); let Components = require('./components/Components'); let isFunction = require('lodash').isFunction; class Mix { /** * Create a new instance. */ constructor() { this.paths = new Paths(); this.manifest = new Manifest(); this.dispatcher = new Dispatcher(); this.tasks = []; this.bundlingJavaScript = false; this.components = new Components(); } /** * Determine if the given config item is truthy. * * @param {string} tool */ isUsing(tool) { return !!Config[tool]; } /** * Determine if Mix is executing in a production environment. */ inProduction() { return Config.production; } /** * Determine if Mix should watch files for changes. */ isWatching() { return ( process.argv.includes('--watch') || process.argv.includes('--hot') ); } /** * Determine if polling is used for file watching */ isPolling() { return this.isWatching() && process.argv.includes('--watch-poll'); } /** * Determine if Mix sees a particular tool or framework. * * @param {string} tool */ sees(tool) { if (tool === 'laravel') { return File.exists('./artisan'); } return false; } /** * Determine if Mix should activate hot reloading. */ shouldHotReload() { new File(path.join(Config.publicPath, 'hot')).delete(); return this.isUsing('hmr'); } /** * Add a custom file to the webpack assets collection. * * @param {string} asset */ addAsset(asset) { Config.customAssets.push(asset); } /** * Queue up a new task. * * @param {Task} task */ addTask(task) { this.tasks.push(task); } /** * Listen for the given event. * * @param {string} event * @param {Function} callback */ listen(event, callback) { this.dispatcher.listen(event, callback); } /** * Dispatch the given event. * * @param {string} event * @param {*} data */ dispatch(event, data) { if (isFunction(data)) { data = data(); } this.dispatcher.fire(event, data); } } module.exports = Mix;