![]() 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/vreg/node_modules/html-webpack-plugin/lib/ |
/* This loader renders the template with underscore if no other loader was found */ // @ts-nocheck 'use strict'; const _ = require('lodash'); const loaderUtils = require('loader-utils'); module.exports = function (source) { // Get templating options const options = this.query !== '' ? loaderUtils.getOptions(this) : {}; const force = options.force || false; const allLoadersButThisOne = this.loaders.filter(function (loader) { return loader.normal !== module.exports; }); // This loader shouldn't kick in if there is any other loader (unless it's explicitly enforced) if (allLoadersButThisOne.length > 0 && !force) { return source; } // Skip .js files (unless it's explicitly enforced) if (/\.js$/.test(this.resourcePath) && !force) { return source; } // The following part renders the template with lodash as a minimalistic loader // const template = _.template(source, _.defaults(options, { interpolate: /<%=([\s\S]+?)%>/g, variable: 'data' })); // Use __non_webpack_require__ to enforce using the native nodejs require // during template execution return 'var _ = __non_webpack_require__(' + JSON.stringify(require.resolve('lodash')) + ');' + 'module.exports = function (templateParams) { with(templateParams) {' + // Execute the lodash template 'return (' + template.source + ')();' + '}}'; };