first commit
This commit is contained in:
91
app_vue/node_modules/webpack/lib/ids/HashedModuleIdsPlugin.js
generated
vendored
Normal file
91
app_vue/node_modules/webpack/lib/ids/HashedModuleIdsPlugin.js
generated
vendored
Normal file
@ -0,0 +1,91 @@
|
||||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
Author Tobias Koppers @sokra
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
const { DEFAULTS } = require("../config/defaults");
|
||||
const {
|
||||
compareModulesByPreOrderIndexOrIdentifier
|
||||
} = require("../util/comparators");
|
||||
const createSchemaValidation = require("../util/create-schema-validation");
|
||||
const createHash = require("../util/createHash");
|
||||
const {
|
||||
getUsedModuleIdsAndModules,
|
||||
getFullModuleName
|
||||
} = require("./IdHelpers");
|
||||
|
||||
/** @typedef {import("../../declarations/plugins/HashedModuleIdsPlugin").HashedModuleIdsPluginOptions} HashedModuleIdsPluginOptions */
|
||||
/** @typedef {import("../Compiler")} Compiler */
|
||||
|
||||
const validate = createSchemaValidation(
|
||||
require("../../schemas/plugins/HashedModuleIdsPlugin.check.js"),
|
||||
() => require("../../schemas/plugins/HashedModuleIdsPlugin.json"),
|
||||
{
|
||||
name: "Hashed Module Ids Plugin",
|
||||
baseDataPath: "options"
|
||||
}
|
||||
);
|
||||
|
||||
const PLUGIN_NAME = "HashedModuleIdsPlugin";
|
||||
|
||||
class HashedModuleIdsPlugin {
|
||||
/**
|
||||
* @param {HashedModuleIdsPluginOptions=} options options object
|
||||
*/
|
||||
constructor(options = {}) {
|
||||
validate(options);
|
||||
|
||||
/** @type {HashedModuleIdsPluginOptions} */
|
||||
this.options = {
|
||||
context: undefined,
|
||||
hashFunction: DEFAULTS.HASH_FUNCTION,
|
||||
hashDigest: "base64",
|
||||
hashDigestLength: 4,
|
||||
...options
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply the plugin
|
||||
* @param {Compiler} compiler the compiler instance
|
||||
* @returns {void}
|
||||
*/
|
||||
apply(compiler) {
|
||||
const options = this.options;
|
||||
compiler.hooks.compilation.tap(PLUGIN_NAME, compilation => {
|
||||
compilation.hooks.moduleIds.tap(PLUGIN_NAME, () => {
|
||||
const chunkGraph = compilation.chunkGraph;
|
||||
const context = this.options.context
|
||||
? this.options.context
|
||||
: compiler.context;
|
||||
|
||||
const [usedIds, modules] = getUsedModuleIdsAndModules(compilation);
|
||||
const modulesInNaturalOrder = modules.sort(
|
||||
compareModulesByPreOrderIndexOrIdentifier(compilation.moduleGraph)
|
||||
);
|
||||
for (const module of modulesInNaturalOrder) {
|
||||
const ident = getFullModuleName(module, context, compiler.root);
|
||||
const hash = createHash(
|
||||
/** @type {NonNullable<HashedModuleIdsPluginOptions["hashFunction"]>} */ (
|
||||
options.hashFunction
|
||||
)
|
||||
);
|
||||
hash.update(ident || "");
|
||||
const hashId = /** @type {string} */ (
|
||||
hash.digest(options.hashDigest)
|
||||
);
|
||||
let len = options.hashDigestLength;
|
||||
while (usedIds.has(hashId.slice(0, len)))
|
||||
/** @type {number} */ (len)++;
|
||||
const moduleId = hashId.slice(0, len);
|
||||
chunkGraph.setModuleId(module, moduleId);
|
||||
usedIds.add(moduleId);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = HashedModuleIdsPlugin;
|
Reference in New Issue
Block a user