![]() 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/components/ |
const Log = require('../Log'); class Options { register(options) { Config.merge(options); this.messages(options).forEach(Log.message); return this; } /** * * @param {any} options */ messages(options) { /** @type {import("../Log").LogMessage[]} */ const messages = []; if ('extractVueStyles' in options) { messages.push({ type: 'warn', text: 'The option extractVueStyles has been moved. Please pass the extractStyles option to mix.vue() instead.' }); } if ('globalVueStyles' in options) { messages.push({ type: 'warn', text: 'The option globalVueStyles has been moved. Please pass the globalStyles option to mix.vue() instead.' }); } if ('extractVueStyles' in options || 'globalVueStyles' in options) { messages.push({ type: 'info', text: `Example:\n${this.buildVueExample(options)}` }); } return messages; } /** * * @param {any} options * @returns {string} */ buildVueExample(options) { const props = {}; if ('extractVueStyles' in options) { props['extractStyles'] = options.extractVueStyles; } if ('globalVueStyles' in options) { props['globalStyles'] = options.globalVueStyles; } return `mix.vue(${JSON.stringify(props, null, 2)}})`; } } module.exports = Options;