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

@@ -106,7 +106,6 @@ import {
AST_Unary,
AST_UnaryPostfix,
AST_UnaryPrefix,
AST_Undefined,
AST_Using,
AST_Var,
AST_VarDef,
@@ -122,6 +121,7 @@ import {
} from "../ast.js";
import {
make_node,
make_void_0,
MAP,
member,
remove,
@@ -635,7 +635,7 @@ export function tighten_body(statements, compressor) {
}
} else {
if (!arg) {
arg = make_node(AST_Undefined, sym).transform(compressor);
arg = make_void_0(sym).transform(compressor);
} else if (arg instanceof AST_Lambda && arg.pinned()
|| has_overlapping_symbol(fn, arg, fn_strict)) {
arg = null;
@@ -875,7 +875,7 @@ export function tighten_body(statements, compressor) {
found = true;
if (node instanceof AST_VarDef) {
node.value = node.name instanceof AST_SymbolConst
? make_node(AST_Undefined, node.value) // `const` always needs value.
? make_void_0(node.value) // `const` always needs value.
: null;
return node;
}
@@ -1314,7 +1314,7 @@ export function tighten_body(statements, compressor) {
var stat = statements[i];
if (prev) {
if (stat instanceof AST_Exit) {
stat.value = cons_seq(stat.value || make_node(AST_Undefined, stat).transform(compressor));
stat.value = cons_seq(stat.value || make_void_0(stat).transform(compressor));
} else if (stat instanceof AST_For) {
if (!(stat.init instanceof AST_DefinitionsLike)) {
const abort = walk(prev.body, node => {