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

3
node_modules/codemirror/AUTHORS generated vendored
View File

@@ -290,6 +290,7 @@ Filip Stollár
Filype Pereira
finalfantasia
flack
flofriday
Florian Felten
Fons van der Plas
Forbes Lindesay
@@ -356,6 +357,7 @@ Hendrik Erz
Hendrik Wallbaum
Henrik Haugbølle
Herculano Campos
Hicham Omari
hidaiy
Hiroyuki Makino
hitsthings
@@ -466,6 +468,7 @@ Joo
Joost-Wim Boekesteijn
José dBruxelles
Joseph D. Purcell
Joseph Olstad
Joseph Pecoraro
Josh Barnes
Josh Cohen

View File

@@ -1,3 +1,11 @@
## 5.65.21 (2026-02-07)
### Bug fixes
Better handle configuration objects with a null prototype.
[kotlin mode](https://codemirror.net/5/mode/clike/): Fix tokenizing of unsigned long literals.
## 5.65.20 (2025-08-10)
### Bug fixes

View File

@@ -51,6 +51,11 @@ Note that we are not accepting any new addons or modes into the main
distribution. If you've written such a module, please distribute it as
a separate NPM package.
Code written by "AI" language models (either partially or fully) is
**not welcome**. Both because you cannot guarantee it's not parroting
copyrighted content, and because it tends to be of low quality and a
waste of time to review.
- Make sure you have a [GitHub Account](https://github.com/signup/free)
- Fork [CodeMirror](https://github.com/codemirror/CodeMirror/)
([how to fork a repo](https://help.github.com/articles/fork-a-repo))

View File

@@ -4,7 +4,7 @@
function copyObj(obj, target, overwrite) {
if (!target) { target = {}; }
for (var prop in obj)
{ if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))
{ if (Object.prototype.hasOwnProperty.call(obj, prop) && (overwrite !== false || !Object.prototype.hasOwnProperty.call(target, prop)))
{ target[prop] = obj[prop]; } }
return target
}

View File

@@ -3,7 +3,7 @@
function copyObj(obj, target, overwrite) {
if (!target) { target = {}; }
for (var prop in obj)
{ if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))
{ if (Object.prototype.hasOwnProperty.call(obj, prop) && (overwrite !== false || !Object.prototype.hasOwnProperty.call(target, prop)))
{ target[prop] = obj[prop]; } }
return target
}

View File

@@ -166,7 +166,7 @@
function copyObj(obj, target, overwrite) {
if (!target) { target = {}; }
for (var prop in obj)
{ if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))
{ if (Object.prototype.hasOwnProperty.call(obj, prop) && (overwrite !== false || !Object.prototype.hasOwnProperty.call(target, prop)))
{ target[prop] = obj[prop]; } }
return target
}
@@ -9877,7 +9877,7 @@
addLegacyProps(CodeMirror);
CodeMirror.version = "5.65.20";
CodeMirror.version = "5.65.21";
return CodeMirror;

View File

@@ -677,10 +677,10 @@ CodeMirror.defineMode("clike", function(config, parserConfig) {
"ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy " +
"LazyThreadSafetyMode LongArray Nothing ShortArray Unit"
),
intendSwitch: false,
indentSwitch: false,
indentStatements: false,
multiLineStrings: true,
number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,
number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(ul?|l|f)?/i,
blockKeywords: words("catch class do else finally for if where try while enum"),
defKeywords: words("class val var object interface fun"),
atoms: words("true false null this"),

View File

@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.65.20",
"version": "5.65.21",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {

View File

@@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
addLegacyProps(CodeMirror)
CodeMirror.version = "5.65.20"
CodeMirror.version = "5.65.21"

View File

@@ -6,7 +6,7 @@ export function bind(f) {
export function copyObj(obj, target, overwrite) {
if (!target) target = {}
for (let prop in obj)
if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))
if (Object.prototype.hasOwnProperty.call(obj, prop) && (overwrite !== false || !Object.prototype.hasOwnProperty.call(target, prop)))
target[prop] = obj[prop]
return target
}