first commit
This commit is contained in:
235
app_vue/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js
generated
vendored
Normal file
235
app_vue/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js
generated
vendored
Normal file
@ -0,0 +1,235 @@
|
||||
"use strict";
|
||||
|
||||
/* eslint-env browser */
|
||||
/*
|
||||
eslint-disable
|
||||
no-console,
|
||||
func-names
|
||||
*/
|
||||
|
||||
/** @typedef {any} TODO */
|
||||
|
||||
var normalizeUrl = require("./normalize-url");
|
||||
var srcByModuleId = Object.create(null);
|
||||
var noDocument = typeof document === "undefined";
|
||||
var forEach = Array.prototype.forEach;
|
||||
|
||||
/**
|
||||
* @param {function} fn
|
||||
* @param {number} time
|
||||
* @returns {(function(): void)|*}
|
||||
*/
|
||||
function debounce(fn, time) {
|
||||
var timeout = 0;
|
||||
return function () {
|
||||
// @ts-ignore
|
||||
var self = this;
|
||||
// eslint-disable-next-line prefer-rest-params
|
||||
var args = arguments;
|
||||
var functionCall = function functionCall() {
|
||||
return fn.apply(self, args);
|
||||
};
|
||||
clearTimeout(timeout);
|
||||
|
||||
// @ts-ignore
|
||||
timeout = setTimeout(functionCall, time);
|
||||
};
|
||||
}
|
||||
function noop() {}
|
||||
|
||||
/**
|
||||
* @param {TODO} moduleId
|
||||
* @returns {TODO}
|
||||
*/
|
||||
function getCurrentScriptUrl(moduleId) {
|
||||
var src = srcByModuleId[moduleId];
|
||||
if (!src) {
|
||||
if (document.currentScript) {
|
||||
src = ( /** @type {HTMLScriptElement} */document.currentScript).src;
|
||||
} else {
|
||||
var scripts = document.getElementsByTagName("script");
|
||||
var lastScriptTag = scripts[scripts.length - 1];
|
||||
if (lastScriptTag) {
|
||||
src = lastScriptTag.src;
|
||||
}
|
||||
}
|
||||
srcByModuleId[moduleId] = src;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} fileMap
|
||||
* @returns {null | string[]}
|
||||
*/
|
||||
return function (fileMap) {
|
||||
if (!src) {
|
||||
return null;
|
||||
}
|
||||
var splitResult = src.split(/([^\\/]+)\.js$/);
|
||||
var filename = splitResult && splitResult[1];
|
||||
if (!filename) {
|
||||
return [src.replace(".js", ".css")];
|
||||
}
|
||||
if (!fileMap) {
|
||||
return [src.replace(".js", ".css")];
|
||||
}
|
||||
return fileMap.split(",").map(function (mapRule) {
|
||||
var reg = new RegExp("".concat(filename, "\\.js$"), "g");
|
||||
return normalizeUrl(src.replace(reg, "".concat(mapRule.replace(/{fileName}/g, filename), ".css")));
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {TODO} el
|
||||
* @param {string} [url]
|
||||
*/
|
||||
function updateCss(el, url) {
|
||||
if (!url) {
|
||||
if (!el.href) {
|
||||
return;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line
|
||||
url = el.href.split("?")[0];
|
||||
}
|
||||
if (!isUrlRequest( /** @type {string} */url)) {
|
||||
return;
|
||||
}
|
||||
if (el.isLoaded === false) {
|
||||
// We seem to be about to replace a css link that hasn't loaded yet.
|
||||
// We're probably changing the same file more than once.
|
||||
return;
|
||||
}
|
||||
if (!url || !(url.indexOf(".css") > -1)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
el.visited = true;
|
||||
var newEl = el.cloneNode();
|
||||
newEl.isLoaded = false;
|
||||
newEl.addEventListener("load", function () {
|
||||
if (newEl.isLoaded) {
|
||||
return;
|
||||
}
|
||||
newEl.isLoaded = true;
|
||||
el.parentNode.removeChild(el);
|
||||
});
|
||||
newEl.addEventListener("error", function () {
|
||||
if (newEl.isLoaded) {
|
||||
return;
|
||||
}
|
||||
newEl.isLoaded = true;
|
||||
el.parentNode.removeChild(el);
|
||||
});
|
||||
newEl.href = "".concat(url, "?").concat(Date.now());
|
||||
if (el.nextSibling) {
|
||||
el.parentNode.insertBefore(newEl, el.nextSibling);
|
||||
} else {
|
||||
el.parentNode.appendChild(newEl);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} href
|
||||
* @param {TODO} src
|
||||
* @returns {TODO}
|
||||
*/
|
||||
function getReloadUrl(href, src) {
|
||||
var ret;
|
||||
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
href = normalizeUrl(href);
|
||||
src.some(
|
||||
/**
|
||||
* @param {string} url
|
||||
*/
|
||||
// eslint-disable-next-line array-callback-return
|
||||
function (url) {
|
||||
if (href.indexOf(src) > -1) {
|
||||
ret = url;
|
||||
}
|
||||
});
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} [src]
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function reloadStyle(src) {
|
||||
if (!src) {
|
||||
return false;
|
||||
}
|
||||
var elements = document.querySelectorAll("link");
|
||||
var loaded = false;
|
||||
forEach.call(elements, function (el) {
|
||||
if (!el.href) {
|
||||
return;
|
||||
}
|
||||
var url = getReloadUrl(el.href, src);
|
||||
if (!isUrlRequest(url)) {
|
||||
return;
|
||||
}
|
||||
if (el.visited === true) {
|
||||
return;
|
||||
}
|
||||
if (url) {
|
||||
updateCss(el, url);
|
||||
loaded = true;
|
||||
}
|
||||
});
|
||||
return loaded;
|
||||
}
|
||||
function reloadAll() {
|
||||
var elements = document.querySelectorAll("link");
|
||||
forEach.call(elements, function (el) {
|
||||
if (el.visited === true) {
|
||||
return;
|
||||
}
|
||||
updateCss(el);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} url
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function isUrlRequest(url) {
|
||||
// An URL is not an request if
|
||||
|
||||
// It is not http or https
|
||||
if (!/^[a-zA-Z][a-zA-Z\d+\-.]*:/.test(url)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {TODO} moduleId
|
||||
* @param {TODO} options
|
||||
* @returns {TODO}
|
||||
*/
|
||||
module.exports = function (moduleId, options) {
|
||||
if (noDocument) {
|
||||
console.log("no window.document found, will not HMR CSS");
|
||||
return noop;
|
||||
}
|
||||
var getScriptSrc = getCurrentScriptUrl(moduleId);
|
||||
function update() {
|
||||
var src = getScriptSrc(options.filename);
|
||||
var reloaded = reloadStyle(src);
|
||||
if (options.locals) {
|
||||
console.log("[HMR] Detected local css modules. Reload all css");
|
||||
reloadAll();
|
||||
return;
|
||||
}
|
||||
if (reloaded) {
|
||||
console.log("[HMR] css reload %s", src.join(" "));
|
||||
} else {
|
||||
console.log("[HMR] Reload all css");
|
||||
reloadAll();
|
||||
}
|
||||
}
|
||||
return debounce(update, 50);
|
||||
};
|
39
app_vue/node_modules/mini-css-extract-plugin/dist/hmr/normalize-url.js
generated
vendored
Normal file
39
app_vue/node_modules/mini-css-extract-plugin/dist/hmr/normalize-url.js
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
"use strict";
|
||||
|
||||
/* eslint-disable */
|
||||
|
||||
/**
|
||||
* @param {string[]} pathComponents
|
||||
* @returns {string}
|
||||
*/
|
||||
function normalizeUrl(pathComponents) {
|
||||
return pathComponents.reduce(function (accumulator, item) {
|
||||
switch (item) {
|
||||
case "..":
|
||||
accumulator.pop();
|
||||
break;
|
||||
case ".":
|
||||
break;
|
||||
default:
|
||||
accumulator.push(item);
|
||||
}
|
||||
return accumulator;
|
||||
}, /** @type {string[]} */[]).join("/");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} urlString
|
||||
* @returns {string}
|
||||
*/
|
||||
module.exports = function (urlString) {
|
||||
urlString = urlString.trim();
|
||||
if (/^data:/i.test(urlString)) {
|
||||
return urlString;
|
||||
}
|
||||
var protocol = urlString.indexOf("//") !== -1 ? urlString.split("//")[0] + "//" : "";
|
||||
var components = urlString.replace(new RegExp(protocol, "i"), "").split("/");
|
||||
var host = components[0].toLowerCase().replace(/\.$/, "");
|
||||
components[0] = "";
|
||||
var path = normalizeUrl(components);
|
||||
return protocol + host + path;
|
||||
};
|
1075
app_vue/node_modules/mini-css-extract-plugin/dist/index.js
generated
vendored
Normal file
1075
app_vue/node_modules/mini-css-extract-plugin/dist/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
37
app_vue/node_modules/mini-css-extract-plugin/dist/loader-options.json
generated
vendored
Normal file
37
app_vue/node_modules/mini-css-extract-plugin/dist/loader-options.json
generated
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"title": "Mini CSS Extract Plugin Loader options",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"publicPath": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"instanceof": "Function"
|
||||
}
|
||||
],
|
||||
"description": "Specifies a custom public path for the external resources like images, files, etc inside CSS.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#publicpath"
|
||||
},
|
||||
"emit": {
|
||||
"type": "boolean",
|
||||
"description": "If true, emits a file (writes a file to the filesystem). If false, the plugin will extract the CSS but will not emit the file",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#emit"
|
||||
},
|
||||
"esModule": {
|
||||
"type": "boolean",
|
||||
"description": "Generates JS modules that use the ES modules syntax.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#esmodule"
|
||||
},
|
||||
"layer": {
|
||||
"type": "string"
|
||||
},
|
||||
"defaultExport": {
|
||||
"type": "boolean",
|
||||
"description": "Duplicate the named export with CSS modules locals to the default export (only when `esModules: true` for css-loader).",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#defaultexports"
|
||||
}
|
||||
}
|
||||
}
|
423
app_vue/node_modules/mini-css-extract-plugin/dist/loader.js
generated
vendored
Normal file
423
app_vue/node_modules/mini-css-extract-plugin/dist/loader.js
generated
vendored
Normal file
@ -0,0 +1,423 @@
|
||||
"use strict";
|
||||
|
||||
const path = require("path");
|
||||
const {
|
||||
findModuleById,
|
||||
evalModuleCode,
|
||||
AUTO_PUBLIC_PATH,
|
||||
ABSOLUTE_PUBLIC_PATH,
|
||||
BASE_URI,
|
||||
SINGLE_DOT_PATH_SEGMENT,
|
||||
stringifyRequest,
|
||||
stringifyLocal
|
||||
} = require("./utils");
|
||||
const schema = require("./loader-options.json");
|
||||
const MiniCssExtractPlugin = require("./index");
|
||||
|
||||
/** @typedef {import("schema-utils/declarations/validate").Schema} Schema */
|
||||
/** @typedef {import("webpack").Compiler} Compiler */
|
||||
/** @typedef {import("webpack").Compilation} Compilation */
|
||||
/** @typedef {import("webpack").Chunk} Chunk */
|
||||
/** @typedef {import("webpack").Module} Module */
|
||||
/** @typedef {import("webpack").sources.Source} Source */
|
||||
/** @typedef {import("webpack").AssetInfo} AssetInfo */
|
||||
/** @typedef {import("webpack").NormalModule} NormalModule */
|
||||
/** @typedef {import("./index.js").LoaderOptions} LoaderOptions */
|
||||
/** @typedef {{ [key: string]: string | function }} Locals */
|
||||
|
||||
/** @typedef {any} TODO */
|
||||
|
||||
/**
|
||||
* @typedef {Object} Dependency
|
||||
* @property {string} identifier
|
||||
* @property {string | null} context
|
||||
* @property {Buffer} content
|
||||
* @property {string} media
|
||||
* @property {string} [supports]
|
||||
* @property {string} [layer]
|
||||
* @property {Buffer} [sourceMap]
|
||||
*/
|
||||
|
||||
/**
|
||||
* @param {string} content
|
||||
* @param {{ loaderContext: import("webpack").LoaderContext<LoaderOptions>, options: LoaderOptions, locals: Locals | undefined }} context
|
||||
* @returns {string}
|
||||
*/
|
||||
function hotLoader(content, context) {
|
||||
const localsJsonString = JSON.stringify(JSON.stringify(context.locals));
|
||||
return `${content}
|
||||
if(module.hot) {
|
||||
(function() {
|
||||
var localsJsonString = ${localsJsonString};
|
||||
// ${Date.now()}
|
||||
var cssReload = require(${stringifyRequest(context.loaderContext, path.join(__dirname, "hmr/hotModuleReplacement.js"))})(module.id, ${JSON.stringify(context.options)});
|
||||
// only invalidate when locals change
|
||||
if (
|
||||
module.hot.data &&
|
||||
module.hot.data.value &&
|
||||
module.hot.data.value !== localsJsonString
|
||||
) {
|
||||
module.hot.invalidate();
|
||||
} else {
|
||||
module.hot.accept();
|
||||
}
|
||||
module.hot.dispose(function(data) {
|
||||
data.value = localsJsonString;
|
||||
cssReload();
|
||||
});
|
||||
})();
|
||||
}
|
||||
`;
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {import("webpack").LoaderContext<LoaderOptions>}
|
||||
* @param {string} request
|
||||
*/
|
||||
function pitch(request) {
|
||||
if (this._compiler && this._compiler.options && this._compiler.options.experiments && this._compiler.options.experiments.css && this._module && (this._module.type === "css" || this._module.type === "css/auto" || this._module.type === "css/global" || this._module.type === "css/module")) {
|
||||
this.emitWarning(new Error('You can\'t use `experiments.css` (`experiments.futureDefaults` enable built-in CSS support by default) and `mini-css-extract-plugin` together, please set `experiments.css` to `false` or set `{ type: "javascript/auto" }` for rules with `mini-css-extract-plugin` in your webpack config (now `mini-css-extract-plugin` does nothing).'));
|
||||
return;
|
||||
}
|
||||
|
||||
// @ts-ignore
|
||||
const options = this.getOptions( /** @type {Schema} */schema);
|
||||
const emit = typeof options.emit !== "undefined" ? options.emit : true;
|
||||
const callback = this.async();
|
||||
const optionsFromPlugin = /** @type {TODO} */this[MiniCssExtractPlugin.pluginSymbol];
|
||||
if (!optionsFromPlugin) {
|
||||
callback(new Error("You forgot to add 'mini-css-extract-plugin' plugin (i.e. `{ plugins: [new MiniCssExtractPlugin()] }`), please read https://github.com/webpack-contrib/mini-css-extract-plugin#getting-started"));
|
||||
return;
|
||||
}
|
||||
const {
|
||||
webpack
|
||||
} = /** @type {Compiler} */this._compiler;
|
||||
|
||||
/**
|
||||
* @param {TODO} originalExports
|
||||
* @param {Compilation} [compilation]
|
||||
* @param {{ [name: string]: Source }} [assets]
|
||||
* @param {Map<string, AssetInfo>} [assetsInfo]
|
||||
* @returns {void}
|
||||
*/
|
||||
const handleExports = (originalExports, compilation, assets, assetsInfo) => {
|
||||
/** @type {Locals | undefined} */
|
||||
let locals;
|
||||
let namedExport;
|
||||
const esModule = typeof options.esModule !== "undefined" ? options.esModule : true;
|
||||
|
||||
/**
|
||||
* @param {Dependency[] | [null, object][]} dependencies
|
||||
*/
|
||||
const addDependencies = dependencies => {
|
||||
if (!Array.isArray(dependencies) && dependencies != null) {
|
||||
throw new Error(`Exported value was not extracted as an array: ${JSON.stringify(dependencies)}`);
|
||||
}
|
||||
const identifierCountMap = new Map();
|
||||
let lastDep;
|
||||
for (const dependency of dependencies) {
|
||||
if (!( /** @type {Dependency} */dependency.identifier) || !emit) {
|
||||
// eslint-disable-next-line no-continue
|
||||
continue;
|
||||
}
|
||||
const count = identifierCountMap.get( /** @type {Dependency} */dependency.identifier) || 0;
|
||||
const CssDependency = MiniCssExtractPlugin.getCssDependency(webpack);
|
||||
|
||||
/** @type {NormalModule} */
|
||||
this._module.addDependency(lastDep = new CssDependency( /** @type {Dependency} */
|
||||
dependency, /** @type {Dependency} */
|
||||
dependency.context, count));
|
||||
identifierCountMap.set( /** @type {Dependency} */
|
||||
dependency.identifier, count + 1);
|
||||
}
|
||||
if (lastDep && assets) {
|
||||
lastDep.assets = assets;
|
||||
lastDep.assetsInfo = assetsInfo;
|
||||
}
|
||||
};
|
||||
try {
|
||||
// eslint-disable-next-line no-underscore-dangle
|
||||
const exports = originalExports.__esModule ? originalExports.default : originalExports;
|
||||
namedExport =
|
||||
// eslint-disable-next-line no-underscore-dangle
|
||||
originalExports.__esModule && (!originalExports.default || !("locals" in originalExports.default));
|
||||
if (namedExport) {
|
||||
Object.keys(originalExports).forEach(key => {
|
||||
if (key !== "default") {
|
||||
if (!locals) {
|
||||
locals = {};
|
||||
}
|
||||
|
||||
/** @type {Locals} */
|
||||
locals[key] = originalExports[key];
|
||||
}
|
||||
});
|
||||
} else {
|
||||
locals = exports && exports.locals;
|
||||
}
|
||||
|
||||
/** @type {Dependency[] | [null, object][]} */
|
||||
let dependencies;
|
||||
if (!Array.isArray(exports)) {
|
||||
dependencies = [[null, exports]];
|
||||
} else {
|
||||
dependencies = exports.map(([id, content, media, sourceMap, supports, layer]) => {
|
||||
let identifier = id;
|
||||
let context;
|
||||
if (compilation) {
|
||||
const module = /** @type {Module} */
|
||||
findModuleById(compilation, id);
|
||||
identifier = module.identifier();
|
||||
({
|
||||
context
|
||||
} = module);
|
||||
} else {
|
||||
// TODO check if this context is used somewhere
|
||||
context = this.rootContext;
|
||||
}
|
||||
return {
|
||||
identifier,
|
||||
context,
|
||||
content: Buffer.from(content),
|
||||
media,
|
||||
supports,
|
||||
layer,
|
||||
sourceMap: sourceMap ? Buffer.from(JSON.stringify(sourceMap)) :
|
||||
// eslint-disable-next-line no-undefined
|
||||
undefined
|
||||
};
|
||||
});
|
||||
}
|
||||
addDependencies(dependencies);
|
||||
} catch (e) {
|
||||
callback( /** @type {Error} */e);
|
||||
return;
|
||||
}
|
||||
const result = function makeResult() {
|
||||
const defaultExport = typeof options.defaultExport !== "undefined" ? options.defaultExport : false;
|
||||
if (locals) {
|
||||
if (namedExport) {
|
||||
const identifiers = Array.from(function* generateIdentifiers() {
|
||||
let identifierId = 0;
|
||||
for (const key of Object.keys(locals)) {
|
||||
identifierId += 1;
|
||||
yield [`_${identifierId.toString(16)}`, key];
|
||||
}
|
||||
}());
|
||||
const localsString = identifiers.map(([id, key]) => `\nvar ${id} = ${stringifyLocal( /** @type {Locals} */locals[key])};`).join("");
|
||||
const exportsString = `export { ${identifiers.map(([id, key]) => `${id} as ${JSON.stringify(key)}`).join(", ")} }`;
|
||||
return defaultExport ? `${localsString}\n${exportsString}\nexport default { ${identifiers.map(([id, key]) => `${JSON.stringify(key)}: ${id}`).join(", ")} }\n` : `${localsString}\n${exportsString}\n`;
|
||||
}
|
||||
return `\n${esModule ? "export default" : "module.exports = "} ${JSON.stringify(locals)};`;
|
||||
} else if (esModule) {
|
||||
return defaultExport ? "\nexport {};export default {};" : "\nexport {};";
|
||||
}
|
||||
return "";
|
||||
}();
|
||||
let resultSource = `// extracted by ${MiniCssExtractPlugin.pluginName}`;
|
||||
|
||||
// only attempt hotreloading if the css is actually used for something other than hash values
|
||||
resultSource += this.hot && emit ? hotLoader(result, {
|
||||
loaderContext: this,
|
||||
options,
|
||||
locals
|
||||
}) : result;
|
||||
callback(null, resultSource);
|
||||
};
|
||||
let {
|
||||
publicPath
|
||||
} = /** @type {Compilation} */
|
||||
this._compilation.outputOptions;
|
||||
if (typeof options.publicPath === "string") {
|
||||
// eslint-disable-next-line prefer-destructuring
|
||||
publicPath = options.publicPath;
|
||||
} else if (typeof options.publicPath === "function") {
|
||||
publicPath = options.publicPath(this.resourcePath, this.rootContext);
|
||||
}
|
||||
if (publicPath === "auto") {
|
||||
publicPath = AUTO_PUBLIC_PATH;
|
||||
}
|
||||
if (typeof optionsFromPlugin.experimentalUseImportModule === "undefined" && typeof this.importModule === "function" || optionsFromPlugin.experimentalUseImportModule) {
|
||||
if (!this.importModule) {
|
||||
callback(new Error("You are using 'experimentalUseImportModule' but 'this.importModule' is not available in loader context. You need to have at least webpack 5.33.2."));
|
||||
return;
|
||||
}
|
||||
let publicPathForExtract;
|
||||
if (typeof publicPath === "string") {
|
||||
const isAbsolutePublicPath = /^[a-zA-Z][a-zA-Z\d+\-.]*?:/.test(publicPath);
|
||||
publicPathForExtract = isAbsolutePublicPath ? publicPath : `${ABSOLUTE_PUBLIC_PATH}${publicPath.replace(/\./g, SINGLE_DOT_PATH_SEGMENT)}`;
|
||||
} else {
|
||||
publicPathForExtract = publicPath;
|
||||
}
|
||||
this.importModule(`${this.resourcePath}.webpack[javascript/auto]!=!!!${request}`, {
|
||||
layer: options.layer,
|
||||
publicPath: ( /** @type {string} */publicPathForExtract),
|
||||
baseUri: `${BASE_URI}/`
|
||||
},
|
||||
/**
|
||||
* @param {Error | null | undefined} error
|
||||
* @param {object} exports
|
||||
*/
|
||||
(error, exports) => {
|
||||
if (error) {
|
||||
callback(error);
|
||||
return;
|
||||
}
|
||||
handleExports(exports);
|
||||
});
|
||||
return;
|
||||
}
|
||||
const loaders = this.loaders.slice(this.loaderIndex + 1);
|
||||
this.addDependency(this.resourcePath);
|
||||
const childFilename = "*";
|
||||
const outputOptions = {
|
||||
filename: childFilename,
|
||||
publicPath
|
||||
};
|
||||
const childCompiler = /** @type {Compilation} */
|
||||
this._compilation.createChildCompiler(`${MiniCssExtractPlugin.pluginName} ${request}`, outputOptions);
|
||||
|
||||
// The templates are compiled and executed by NodeJS - similar to server side rendering
|
||||
// Unfortunately this causes issues as some loaders require an absolute URL to support ES Modules
|
||||
// The following config enables relative URL support for the child compiler
|
||||
childCompiler.options.module = {
|
||||
...childCompiler.options.module
|
||||
};
|
||||
childCompiler.options.module.parser = {
|
||||
...childCompiler.options.module.parser
|
||||
};
|
||||
childCompiler.options.module.parser.javascript = {
|
||||
...childCompiler.options.module.parser.javascript,
|
||||
url: "relative"
|
||||
};
|
||||
const {
|
||||
NodeTemplatePlugin
|
||||
} = webpack.node;
|
||||
const {
|
||||
NodeTargetPlugin
|
||||
} = webpack.node;
|
||||
|
||||
// @ts-ignore
|
||||
new NodeTemplatePlugin(outputOptions).apply(childCompiler);
|
||||
new NodeTargetPlugin().apply(childCompiler);
|
||||
const {
|
||||
EntryOptionPlugin
|
||||
} = webpack;
|
||||
const {
|
||||
library: {
|
||||
EnableLibraryPlugin
|
||||
}
|
||||
} = webpack;
|
||||
new EnableLibraryPlugin("commonjs2").apply(childCompiler);
|
||||
EntryOptionPlugin.applyEntryOption(childCompiler, this.context, {
|
||||
child: {
|
||||
library: {
|
||||
type: "commonjs2"
|
||||
},
|
||||
import: [`!!${request}`]
|
||||
}
|
||||
});
|
||||
const {
|
||||
LimitChunkCountPlugin
|
||||
} = webpack.optimize;
|
||||
new LimitChunkCountPlugin({
|
||||
maxChunks: 1
|
||||
}).apply(childCompiler);
|
||||
const {
|
||||
NormalModule
|
||||
} = webpack;
|
||||
childCompiler.hooks.thisCompilation.tap(`${MiniCssExtractPlugin.pluginName} loader`,
|
||||
/**
|
||||
* @param {Compilation} compilation
|
||||
*/
|
||||
compilation => {
|
||||
const normalModuleHook = NormalModule.getCompilationHooks(compilation).loader;
|
||||
normalModuleHook.tap(`${MiniCssExtractPlugin.pluginName} loader`, (loaderContext, module) => {
|
||||
if (module.request === request) {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
module.loaders = loaders.map(loader => {
|
||||
return {
|
||||
type: null,
|
||||
loader: loader.path,
|
||||
options: loader.options,
|
||||
ident: loader.ident
|
||||
};
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
/** @type {string | Buffer} */
|
||||
let source;
|
||||
childCompiler.hooks.compilation.tap(MiniCssExtractPlugin.pluginName,
|
||||
/**
|
||||
* @param {Compilation} compilation
|
||||
*/
|
||||
compilation => {
|
||||
compilation.hooks.processAssets.tap(MiniCssExtractPlugin.pluginName, () => {
|
||||
source = compilation.assets[childFilename] && compilation.assets[childFilename].source();
|
||||
|
||||
// Remove all chunk assets
|
||||
compilation.chunks.forEach(chunk => {
|
||||
chunk.files.forEach(file => {
|
||||
compilation.deleteAsset(file);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
childCompiler.runAsChild((error, entries, compilation) => {
|
||||
if (error) {
|
||||
callback(error);
|
||||
return;
|
||||
}
|
||||
if ( /** @type {Compilation} */compilation.errors.length > 0) {
|
||||
callback( /** @type {Compilation} */compilation.errors[0]);
|
||||
return;
|
||||
}
|
||||
|
||||
/** @type {{ [name: string]: Source }} */
|
||||
const assets = Object.create(null);
|
||||
/** @type {Map<string, AssetInfo>} */
|
||||
const assetsInfo = new Map();
|
||||
for (const asset of /** @type {Compilation} */compilation.getAssets()) {
|
||||
assets[asset.name] = asset.source;
|
||||
assetsInfo.set(asset.name, asset.info);
|
||||
}
|
||||
|
||||
/** @type {Compilation} */
|
||||
compilation.fileDependencies.forEach(dep => {
|
||||
this.addDependency(dep);
|
||||
}, this);
|
||||
|
||||
/** @type {Compilation} */
|
||||
compilation.contextDependencies.forEach(dep => {
|
||||
this.addContextDependency(dep);
|
||||
}, this);
|
||||
if (!source) {
|
||||
callback(new Error("Didn't get a result from child compiler"));
|
||||
return;
|
||||
}
|
||||
let originalExports;
|
||||
try {
|
||||
originalExports = evalModuleCode(this, source, request);
|
||||
} catch (e) {
|
||||
callback( /** @type {Error} */e);
|
||||
return;
|
||||
}
|
||||
handleExports(originalExports, compilation, assets, assetsInfo);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {import("webpack").LoaderContext<LoaderOptions>}
|
||||
* @param {string} content
|
||||
*/
|
||||
// eslint-disable-next-line consistent-return
|
||||
function loader(content) {
|
||||
if (this._compiler && this._compiler.options && this._compiler.options.experiments && this._compiler.options.experiments.css && this._module && (this._module.type === "css" || this._module.type === "css/auto" || this._module.type === "css/global" || this._module.type === "css/module")) {
|
||||
return content;
|
||||
}
|
||||
}
|
||||
module.exports = loader;
|
||||
module.exports.pitch = pitch;
|
||||
module.exports.hotLoader = hotLoader;
|
79
app_vue/node_modules/mini-css-extract-plugin/dist/plugin-options.json
generated
vendored
Normal file
79
app_vue/node_modules/mini-css-extract-plugin/dist/plugin-options.json
generated
vendored
Normal file
@ -0,0 +1,79 @@
|
||||
{
|
||||
"title": "Mini CSS Extract Plugin options",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"filename": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"absolutePath": false,
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"instanceof": "Function"
|
||||
}
|
||||
],
|
||||
"description": "This option determines the name of each output CSS file.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#filename"
|
||||
},
|
||||
"chunkFilename": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"absolutePath": false,
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"instanceof": "Function"
|
||||
}
|
||||
],
|
||||
"description": "This option determines the name of non-entry chunk files.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#chunkfilename"
|
||||
},
|
||||
"experimentalUseImportModule": {
|
||||
"type": "boolean",
|
||||
"description": "Enable the experimental importModule approach instead of using child compilers. This uses less memory and is faster.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#experimentaluseimportmodule"
|
||||
},
|
||||
"ignoreOrder": {
|
||||
"type": "boolean",
|
||||
"description": "Remove Order Warnings.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#ignoreorder"
|
||||
},
|
||||
"insert": {
|
||||
"description": "Inserts the `link` tag at the given position for non-initial (async) (https://webpack.js.org/concepts/under-the-hood/#chunks) CSS chunks.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#insert",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"instanceof": "Function"
|
||||
}
|
||||
]
|
||||
},
|
||||
"attributes": {
|
||||
"description": "Adds custom attributes to the `link` tag for non-initial (async) (https://webpack.js.org/concepts/under-the-hood/#chunks) CSS chunks.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#attributes",
|
||||
"type": "object"
|
||||
},
|
||||
"linkType": {
|
||||
"anyOf": [
|
||||
{
|
||||
"enum": ["text/css"]
|
||||
},
|
||||
{
|
||||
"type": "boolean"
|
||||
}
|
||||
],
|
||||
"description": "This option allows loading asynchronous chunks with a custom link type",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#linktype"
|
||||
},
|
||||
"runtime": {
|
||||
"type": "boolean",
|
||||
"description": "Enabled/Disables runtime generation. CSS will be still extracted and can be used for a custom loading methods.",
|
||||
"link": "https://github.com/webpack-contrib/mini-css-extract-plugin#noRuntime"
|
||||
}
|
||||
}
|
||||
}
|
416
app_vue/node_modules/mini-css-extract-plugin/dist/utils.js
generated
vendored
Normal file
416
app_vue/node_modules/mini-css-extract-plugin/dist/utils.js
generated
vendored
Normal file
@ -0,0 +1,416 @@
|
||||
"use strict";
|
||||
|
||||
const NativeModule = require("module");
|
||||
const path = require("path");
|
||||
|
||||
/** @typedef {import("webpack").Compilation} Compilation */
|
||||
/** @typedef {import("webpack").Module} Module */
|
||||
/** @typedef {import("webpack").LoaderContext<any>} LoaderContext */
|
||||
|
||||
/**
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function trueFn() {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Compilation} compilation
|
||||
* @param {string | number} id
|
||||
* @returns {null | Module}
|
||||
*/
|
||||
function findModuleById(compilation, id) {
|
||||
const {
|
||||
modules,
|
||||
chunkGraph
|
||||
} = compilation;
|
||||
for (const module of modules) {
|
||||
const moduleId = typeof chunkGraph !== "undefined" ? chunkGraph.getModuleId(module) : module.id;
|
||||
if (moduleId === id) {
|
||||
return module;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {LoaderContext} loaderContext
|
||||
* @param {string | Buffer} code
|
||||
* @param {string} filename
|
||||
* @returns {object}
|
||||
*/
|
||||
function evalModuleCode(loaderContext, code, filename) {
|
||||
// @ts-ignore
|
||||
const module = new NativeModule(filename, loaderContext);
|
||||
|
||||
// @ts-ignore
|
||||
module.paths = NativeModule._nodeModulePaths(loaderContext.context); // eslint-disable-line no-underscore-dangle
|
||||
module.filename = filename;
|
||||
// @ts-ignore
|
||||
module._compile(code, filename); // eslint-disable-line no-underscore-dangle
|
||||
|
||||
return module.exports;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} a
|
||||
* @param {string} b
|
||||
* @returns {0 | 1 | -1}
|
||||
*/
|
||||
function compareIds(a, b) {
|
||||
if (typeof a !== typeof b) {
|
||||
return typeof a < typeof b ? -1 : 1;
|
||||
}
|
||||
if (a < b) {
|
||||
return -1;
|
||||
}
|
||||
if (a > b) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Module} a
|
||||
* @param {Module} b
|
||||
* @returns {0 | 1 | -1}
|
||||
*/
|
||||
function compareModulesByIdentifier(a, b) {
|
||||
return compareIds(a.identifier(), b.identifier());
|
||||
}
|
||||
const MODULE_TYPE = "css/mini-extract";
|
||||
const AUTO_PUBLIC_PATH = "__mini_css_extract_plugin_public_path_auto__";
|
||||
const ABSOLUTE_PUBLIC_PATH = "webpack:///mini-css-extract-plugin/";
|
||||
const BASE_URI = "webpack://";
|
||||
const SINGLE_DOT_PATH_SEGMENT = "__mini_css_extract_plugin_single_dot_path_segment__";
|
||||
|
||||
/**
|
||||
* @param {string} str
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function isAbsolutePath(str) {
|
||||
return path.posix.isAbsolute(str) || path.win32.isAbsolute(str);
|
||||
}
|
||||
const RELATIVE_PATH_REGEXP = /^\.\.?[/\\]/;
|
||||
|
||||
/**
|
||||
* @param {string} str
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function isRelativePath(str) {
|
||||
return RELATIVE_PATH_REGEXP.test(str);
|
||||
}
|
||||
|
||||
// TODO simplify for the next major release
|
||||
/**
|
||||
* @param {LoaderContext} loaderContext
|
||||
* @param {string} request
|
||||
* @returns {string}
|
||||
*/
|
||||
function stringifyRequest(loaderContext, request) {
|
||||
if (typeof loaderContext.utils !== "undefined" && typeof loaderContext.utils.contextify === "function") {
|
||||
return JSON.stringify(loaderContext.utils.contextify(loaderContext.context || loaderContext.rootContext, request));
|
||||
}
|
||||
const splitted = request.split("!");
|
||||
const {
|
||||
context
|
||||
} = loaderContext;
|
||||
return JSON.stringify(splitted.map(part => {
|
||||
// First, separate singlePath from query, because the query might contain paths again
|
||||
const splittedPart = part.match(/^(.*?)(\?.*)/);
|
||||
const query = splittedPart ? splittedPart[2] : "";
|
||||
let singlePath = splittedPart ? splittedPart[1] : part;
|
||||
if (isAbsolutePath(singlePath) && context) {
|
||||
singlePath = path.relative(context, singlePath);
|
||||
if (isAbsolutePath(singlePath)) {
|
||||
// If singlePath still matches an absolute path, singlePath was on a different drive than context.
|
||||
// In this case, we leave the path platform-specific without replacing any separators.
|
||||
// @see https://github.com/webpack/loader-utils/pull/14
|
||||
return singlePath + query;
|
||||
}
|
||||
if (isRelativePath(singlePath) === false) {
|
||||
// Ensure that the relative path starts at least with ./ otherwise it would be a request into the modules directory (like node_modules).
|
||||
singlePath = `./${singlePath}`;
|
||||
}
|
||||
}
|
||||
return singlePath.replace(/\\/g, "/") + query;
|
||||
}).join("!"));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} filename
|
||||
* @param {string} outputPath
|
||||
* @param {boolean} enforceRelative
|
||||
* @returns {string}
|
||||
*/
|
||||
function getUndoPath(filename, outputPath, enforceRelative) {
|
||||
let depth = -1;
|
||||
let append = "";
|
||||
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
outputPath = outputPath.replace(/[\\/]$/, "");
|
||||
for (const part of filename.split(/[/\\]+/)) {
|
||||
if (part === "..") {
|
||||
if (depth > -1) {
|
||||
// eslint-disable-next-line no-plusplus
|
||||
depth--;
|
||||
} else {
|
||||
const i = outputPath.lastIndexOf("/");
|
||||
const j = outputPath.lastIndexOf("\\");
|
||||
const pos = i < 0 ? j : j < 0 ? i : Math.max(i, j);
|
||||
if (pos < 0) {
|
||||
return `${outputPath}/`;
|
||||
}
|
||||
append = `${outputPath.slice(pos + 1)}/${append}`;
|
||||
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
outputPath = outputPath.slice(0, pos);
|
||||
}
|
||||
} else if (part !== ".") {
|
||||
// eslint-disable-next-line no-plusplus
|
||||
depth++;
|
||||
}
|
||||
}
|
||||
return depth > 0 ? `${"../".repeat(depth)}${append}` : enforceRelative ? `./${append}` : append;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {string | function} value
|
||||
* @returns {string}
|
||||
*/
|
||||
function stringifyLocal(value) {
|
||||
return typeof value === "function" ? value.toString() : JSON.stringify(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} str string
|
||||
* @returns {string} string
|
||||
*/
|
||||
const toSimpleString = str => {
|
||||
if (`${+str}` === str) {
|
||||
return str;
|
||||
}
|
||||
return JSON.stringify(str);
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {string} str string
|
||||
* @returns {string} quoted meta
|
||||
*/
|
||||
const quoteMeta = str => str.replace(/[-[\]\\/{}()*+?.^$|]/g, "\\$&");
|
||||
|
||||
/**
|
||||
* @param {Array<string>} items items
|
||||
* @returns {string} common prefix
|
||||
*/
|
||||
const getCommonPrefix = items => {
|
||||
let prefix = items[0];
|
||||
for (let i = 1; i < items.length; i++) {
|
||||
const item = items[i];
|
||||
for (let p = 0; p < prefix.length; p++) {
|
||||
if (item[p] !== prefix[p]) {
|
||||
prefix = prefix.slice(0, p);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return prefix;
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Array<string>} items items
|
||||
* @returns {string} common suffix
|
||||
*/
|
||||
const getCommonSuffix = items => {
|
||||
let suffix = items[0];
|
||||
for (let i = 1; i < items.length; i++) {
|
||||
const item = items[i];
|
||||
for (let p = item.length - 1, s = suffix.length - 1; s >= 0; p--, s--) {
|
||||
if (item[p] !== suffix[s]) {
|
||||
suffix = suffix.slice(s + 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return suffix;
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Set<string>} itemsSet items set
|
||||
* @param {(str: string) => string | false} getKey get key function
|
||||
* @param {(str: Array<string>) => boolean} condition condition
|
||||
* @returns {Array<Array<string>>} list of common items
|
||||
*/
|
||||
const popCommonItems = (itemsSet, getKey, condition) => {
|
||||
/** @type {Map<string, Array<string>>} */
|
||||
const map = new Map();
|
||||
for (const item of itemsSet) {
|
||||
const key = getKey(item);
|
||||
if (key) {
|
||||
let list = map.get(key);
|
||||
if (list === undefined) {
|
||||
/** @type {Array<string>} */
|
||||
list = [];
|
||||
map.set(key, list);
|
||||
}
|
||||
list.push(item);
|
||||
}
|
||||
}
|
||||
|
||||
/** @type {Array<Array<string>>} */
|
||||
const result = [];
|
||||
for (const list of map.values()) {
|
||||
if (condition(list)) {
|
||||
for (const item of list) {
|
||||
itemsSet.delete(item);
|
||||
}
|
||||
result.push(list);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Array<string>} itemsArr array of items
|
||||
* @returns {string} regexp
|
||||
*/
|
||||
const itemsToRegexp = itemsArr => {
|
||||
if (itemsArr.length === 1) {
|
||||
return quoteMeta(itemsArr[0]);
|
||||
}
|
||||
|
||||
/** @type {Array<string>} */
|
||||
const finishedItems = [];
|
||||
|
||||
// merge single char items: (a|b|c|d|ef) => ([abcd]|ef)
|
||||
let countOfSingleCharItems = 0;
|
||||
for (const item of itemsArr) {
|
||||
if (item.length === 1) {
|
||||
// eslint-disable-next-line no-plusplus
|
||||
countOfSingleCharItems++;
|
||||
}
|
||||
}
|
||||
|
||||
// special case for only single char items
|
||||
if (countOfSingleCharItems === itemsArr.length) {
|
||||
return `[${quoteMeta(itemsArr.sort().join(""))}]`;
|
||||
}
|
||||
const items = new Set(itemsArr.sort());
|
||||
if (countOfSingleCharItems > 2) {
|
||||
let singleCharItems = "";
|
||||
for (const item of items) {
|
||||
if (item.length === 1) {
|
||||
singleCharItems += item;
|
||||
items.delete(item);
|
||||
}
|
||||
}
|
||||
finishedItems.push(`[${quoteMeta(singleCharItems)}]`);
|
||||
}
|
||||
|
||||
// special case for 2 items with common prefix/suffix
|
||||
if (finishedItems.length === 0 && items.size === 2) {
|
||||
const prefix = getCommonPrefix(itemsArr);
|
||||
const suffix = getCommonSuffix(itemsArr.map(item => item.slice(prefix.length)));
|
||||
if (prefix.length > 0 || suffix.length > 0) {
|
||||
return `${quoteMeta(prefix)}${itemsToRegexp(itemsArr.map(i => i.slice(prefix.length, -suffix.length || undefined)))}${quoteMeta(suffix)}`;
|
||||
}
|
||||
}
|
||||
|
||||
// special case for 2 items with common suffix
|
||||
if (finishedItems.length === 0 && items.size === 2) {
|
||||
/** @type {Iterator<string>} */
|
||||
const it = items[Symbol.iterator]();
|
||||
const a = it.next().value;
|
||||
const b = it.next().value;
|
||||
if (a.length > 0 && b.length > 0 && a.slice(-1) === b.slice(-1)) {
|
||||
return `${itemsToRegexp([a.slice(0, -1), b.slice(0, -1)])}${quoteMeta(a.slice(-1))}`;
|
||||
}
|
||||
}
|
||||
|
||||
// find common prefix: (a1|a2|a3|a4|b5) => (a(1|2|3|4)|b5)
|
||||
const prefixed = popCommonItems(items, item => item.length >= 1 ? item[0] : false, list => {
|
||||
if (list.length >= 3) return true;
|
||||
if (list.length <= 1) return false;
|
||||
return list[0][1] === list[1][1];
|
||||
});
|
||||
for (const prefixedItems of prefixed) {
|
||||
const prefix = getCommonPrefix(prefixedItems);
|
||||
finishedItems.push(`${quoteMeta(prefix)}${itemsToRegexp(prefixedItems.map(i => i.slice(prefix.length)))}`);
|
||||
}
|
||||
|
||||
// find common suffix: (a1|b1|c1|d1|e2) => ((a|b|c|d)1|e2)
|
||||
const suffixed = popCommonItems(items, item => item.length >= 1 ? item.slice(-1) : false, list => {
|
||||
if (list.length >= 3) return true;
|
||||
if (list.length <= 1) return false;
|
||||
return list[0].slice(-2) === list[1].slice(-2);
|
||||
});
|
||||
for (const suffixedItems of suffixed) {
|
||||
const suffix = getCommonSuffix(suffixedItems);
|
||||
finishedItems.push(`${itemsToRegexp(suffixedItems.map(i => i.slice(0, -suffix.length)))}${quoteMeta(suffix)}`);
|
||||
}
|
||||
|
||||
// TODO further optimize regexp, i. e.
|
||||
// use ranges: (1|2|3|4|a) => [1-4a]
|
||||
const conditional = finishedItems.concat(Array.from(items, quoteMeta));
|
||||
if (conditional.length === 1) return conditional[0];
|
||||
return `(${conditional.join("|")})`;
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {string[]} positiveItems positive items
|
||||
* @param {string[]} negativeItems negative items
|
||||
* @returns {function(string): string} a template function to determine the value at runtime
|
||||
*/
|
||||
const compileBooleanMatcherFromLists = (positiveItems, negativeItems) => {
|
||||
if (positiveItems.length === 0) {
|
||||
return () => "false";
|
||||
}
|
||||
if (negativeItems.length === 0) {
|
||||
return () => "true";
|
||||
}
|
||||
if (positiveItems.length === 1) {
|
||||
return value => `${toSimpleString(positiveItems[0])} == ${value}`;
|
||||
}
|
||||
if (negativeItems.length === 1) {
|
||||
return value => `${toSimpleString(negativeItems[0])} != ${value}`;
|
||||
}
|
||||
const positiveRegexp = itemsToRegexp(positiveItems);
|
||||
const negativeRegexp = itemsToRegexp(negativeItems);
|
||||
if (positiveRegexp.length <= negativeRegexp.length) {
|
||||
return value => `/^${positiveRegexp}$/.test(${value})`;
|
||||
}
|
||||
return value => `!/^${negativeRegexp}$/.test(${value})`;
|
||||
};
|
||||
|
||||
// TODO simplify in the next major release and use it from webpack
|
||||
/**
|
||||
* @param {Record<string|number, boolean>} map value map
|
||||
* @returns {boolean|(function(string): string)} true/false, when unconditionally true/false, or a template function to determine the value at runtime
|
||||
*/
|
||||
const compileBooleanMatcher = map => {
|
||||
const positiveItems = Object.keys(map).filter(i => map[i]);
|
||||
const negativeItems = Object.keys(map).filter(i => !map[i]);
|
||||
if (positiveItems.length === 0) {
|
||||
return false;
|
||||
}
|
||||
if (negativeItems.length === 0) {
|
||||
return true;
|
||||
}
|
||||
return compileBooleanMatcherFromLists(positiveItems, negativeItems);
|
||||
};
|
||||
module.exports = {
|
||||
trueFn,
|
||||
findModuleById,
|
||||
evalModuleCode,
|
||||
compareModulesByIdentifier,
|
||||
MODULE_TYPE,
|
||||
AUTO_PUBLIC_PATH,
|
||||
ABSOLUTE_PUBLIC_PATH,
|
||||
BASE_URI,
|
||||
SINGLE_DOT_PATH_SEGMENT,
|
||||
stringifyRequest,
|
||||
stringifyLocal,
|
||||
getUndoPath,
|
||||
compileBooleanMatcher
|
||||
};
|
Reference in New Issue
Block a user