WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
node_modules/webpack/lib/ids/DeterministicChunkIdsPlugin.js
@@ -15,6 +15,7 @@
/** @typedef {import("../Compiler")} Compiler */
/**
 * Defines the deterministic chunk ids plugin options type used by this module.
 * @typedef {object} DeterministicChunkIdsPluginOptions
 * @property {string=} context context for ids
 * @property {number=} maxLength maximum length of ids
@@ -24,14 +25,16 @@
class DeterministicChunkIdsPlugin {
   /**
    * Creates an instance of DeterministicChunkIdsPlugin.
    * @param {DeterministicChunkIdsPluginOptions=} options options
    */
   constructor(options = {}) {
      /** @type {DeterministicChunkIdsPluginOptions} */
      this.options = options;
   }
   /**
    * Apply the plugin
    * Applies the plugin by registering its hooks on the compiler.
    * @param {Compiler} compiler the compiler instance
    * @returns {void}
    */