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:
root
2026-02-20 11:31:28 +00:00
parent d01a6179aa
commit b5eb27a827
1690 changed files with 47348 additions and 16848 deletions

View File

@@ -13,6 +13,8 @@ const { getUsedModuleIdsAndModules } = require("./IdHelpers");
/** @typedef {import("../Module").ModuleId} ModuleId */
/** @typedef {import("../util/fs").IntermediateFileSystem} IntermediateFileSystem */
/** @typedef {{ [key: string]: ModuleId }} JSONContent */
const plugin = "SyncModuleIdsPlugin";
/**
@@ -27,14 +29,9 @@ class SyncModuleIdsPlugin {
/**
* @param {SyncModuleIdsPluginOptions} options options
*/
constructor({ path, context, test, mode }) {
this._path = path;
this._context = context;
this._test = test || (() => true);
const readAndWrite = !mode || mode === "merge" || mode === "update";
this._read = readAndWrite || mode === "read";
this._write = readAndWrite || mode === "create";
this._prune = mode === "update";
constructor(options) {
/** @type {SyncModuleIdsPluginOptions} */
this.options = options;
}
/**
@@ -46,19 +43,31 @@ class SyncModuleIdsPlugin {
/** @type {Map<string, ModuleId>} */
let data;
let dataChanged = false;
if (this._read) {
const readAndWrite =
!this.options.mode ||
this.options.mode === "merge" ||
this.options.mode === "update";
const needRead = readAndWrite || this.options.mode === "read";
const needWrite = readAndWrite || this.options.mode === "create";
const needPrune = this.options.mode === "update";
if (needRead) {
compiler.hooks.readRecords.tapAsync(plugin, (callback) => {
const fs =
/** @type {IntermediateFileSystem} */
(compiler.intermediateFileSystem);
fs.readFile(this._path, (err, buffer) => {
fs.readFile(this.options.path, (err, buffer) => {
if (err) {
if (err.code !== "ENOENT") {
return callback(err);
}
return callback();
}
/** @type {JSONContent} */
const json = JSON.parse(/** @type {Buffer} */ (buffer).toString());
/** @type {Map<string, string | number | null>} */
data = new Map();
for (const key of Object.keys(json)) {
data.set(key, json[key]);
@@ -68,10 +77,10 @@ class SyncModuleIdsPlugin {
});
});
}
if (this._write) {
if (needWrite) {
compiler.hooks.emitRecords.tapAsync(plugin, (callback) => {
if (!data || !dataChanged) return callback();
/** @type {{[key: string]: ModuleId}} */
/** @type {JSONContent} */
const json = {};
const sorted = [...data].sort(([a], [b]) => (a < b ? -1 : 1));
for (const [key, value] of sorted) {
@@ -80,19 +89,20 @@ class SyncModuleIdsPlugin {
const fs =
/** @type {IntermediateFileSystem} */
(compiler.intermediateFileSystem);
fs.writeFile(this._path, JSON.stringify(json), callback);
fs.writeFile(this.options.path, JSON.stringify(json), callback);
});
}
compiler.hooks.thisCompilation.tap(plugin, (compilation) => {
const associatedObjectForCache = compiler.root;
const context = this._context || compiler.context;
if (this._read) {
const context = this.options.context || compiler.context;
const test = this.options.test || (() => true);
if (needRead) {
compilation.hooks.reviveModules.tap(plugin, (_1, _2) => {
if (!data) return;
const { chunkGraph } = compilation;
const [usedIds, modules] = getUsedModuleIdsAndModules(
compilation,
this._test
test
);
for (const module of modules) {
const name = module.libIdent({
@@ -104,7 +114,7 @@ class SyncModuleIdsPlugin {
const idAsString = `${id}`;
if (usedIds.has(idAsString)) {
const err = new WebpackError(
`SyncModuleIdsPlugin: Unable to restore id '${id}' from '${this._path}' as it's already used.`
`SyncModuleIdsPlugin: Unable to restore id '${id}' from '${this.options.path}' as it's already used.`
);
err.module = module;
compilation.errors.push(err);
@@ -114,17 +124,17 @@ class SyncModuleIdsPlugin {
}
});
}
if (this._write) {
if (needWrite) {
compilation.hooks.recordModules.tap(plugin, (modules) => {
const { chunkGraph } = compilation;
let oldData = data;
if (!oldData) {
oldData = data = new Map();
} else if (this._prune) {
} else if (needPrune) {
data = new Map();
}
for (const module of modules) {
if (this._test(module)) {
if (test(module)) {
const name = module.libIdent({
context,
associatedObjectForCache