Update npm packages (73 packages including @jqhtml 2.3.36)
Update npm registry domain from privatenpm.hanson.xyz to npm.internal.hanson.xyz 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
7
node_modules/webpack/lib/container/ContainerEntryModule.js
generated
vendored
7
node_modules/webpack/lib/container/ContainerEntryModule.js
generated
vendored
@@ -28,6 +28,7 @@ const ContainerExposedDependency = require("./ContainerExposedDependency");
|
||||
/** @typedef {import("../Module").LibIdent} LibIdent */
|
||||
/** @typedef {import("../Module").NeedBuildCallback} NeedBuildCallback */
|
||||
/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */
|
||||
/** @typedef {import("../Module").Sources} Sources */
|
||||
/** @typedef {import("../Module").SourceTypes} SourceTypes */
|
||||
/** @typedef {import("../RequestShortener")} RequestShortener */
|
||||
/** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */
|
||||
@@ -51,8 +52,11 @@ class ContainerEntryModule extends Module {
|
||||
*/
|
||||
constructor(name, exposes, shareScope) {
|
||||
super(JAVASCRIPT_MODULE_TYPE_DYNAMIC, null);
|
||||
/** @type {string} */
|
||||
this._name = name;
|
||||
/** @type {ExposesList} */
|
||||
this._exposes = exposes;
|
||||
/** @type {string} */
|
||||
this._shareScope = shareScope;
|
||||
}
|
||||
|
||||
@@ -147,12 +151,14 @@ class ContainerEntryModule extends Module {
|
||||
* @returns {CodeGenerationResult} result
|
||||
*/
|
||||
codeGeneration({ moduleGraph, chunkGraph, runtimeTemplate }) {
|
||||
/** @type {Sources} */
|
||||
const sources = new Map();
|
||||
const runtimeRequirements = new Set([
|
||||
RuntimeGlobals.definePropertyGetters,
|
||||
RuntimeGlobals.hasOwnProperty,
|
||||
RuntimeGlobals.exports
|
||||
]);
|
||||
/** @type {string[]} */
|
||||
const getters = [];
|
||||
|
||||
for (const block of this.blocks) {
|
||||
@@ -167,6 +173,7 @@ class ContainerEntryModule extends Module {
|
||||
};
|
||||
});
|
||||
|
||||
/** @type {string} */
|
||||
let str;
|
||||
|
||||
if (modules.some((m) => !m.module)) {
|
||||
|
||||
Reference in New Issue
Block a user