![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/node_modules/laravel-mix/src/tasks/ |
let Task = require('./Task'); let File = require('../File'); let FileCollection = require('../FileCollection'); class VersionFilesTask extends Task { /** * Run the task. */ run() { this.files = new FileCollection(this.data.files); this.assets = this.data.files.map(file => { file = new File(file); this.mix.manifest.hash(file.pathFromPublic()); return file; }); } /** * Handle when a relevant source file is changed. * * @param {string} updatedFile */ onChange(updatedFile) { this.mix.manifest.hash(new File(updatedFile).pathFromPublic()).refresh(); } get mix() { return global.Mix; } } module.exports = VersionFilesTask;