⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
laravel-mix
/
src
/
View File Name :
Mix.js
let Paths = require('./Paths'); let Manifest = require('./Manifest'); let Dispatcher = require('./Dispatcher'); let Components = require('./components/Components'); 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 the given npm package is installed. * * @param {string} npmPackage */ seesNpmPackage(npmPackage) { try { require.resolve(npmPackage); return true; } catch (e) { return false; } } /** * Determine if Mix should activate hot reloading. */ shouldHotReload() { new File(path.join(Config.publicPath, 'hot')).delete(); return this.isUsing('hmr'); } /** * 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 (typeof data === 'function') { data = data(); } this.dispatcher.fire(event, data); } } module.exports = Mix;