Update npm packages

Add --dump-dimensions option to rsx:debug for layout debugging
Mark framework publish

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-03 21:48:28 +00:00
parent cff287e870
commit 8d92b287be
1226 changed files with 16280 additions and 19461 deletions

0
node_modules/cookie/LICENSE generated vendored Executable file → Normal file
View File

0
node_modules/cookie/README.md generated vendored Executable file → Normal file
View File

0
node_modules/cookie/SECURITY.md generated vendored Executable file → Normal file
View File

3
node_modules/cookie/index.js generated vendored Executable file → Normal file
View File

@@ -21,6 +21,7 @@ exports.serialize = serialize;
*/
var __toString = Object.prototype.toString
var __hasOwnProperty = Object.prototype.hasOwnProperty
/**
* RegExp to match cookie-name in RFC 6265 sec 4.1.1
@@ -130,7 +131,7 @@ function parse(str, opt) {
var key = str.slice(keyStartIdx, keyEndIdx);
// only assign once
if (!obj.hasOwnProperty(key)) {
if (!__hasOwnProperty.call(obj, key)) {
var valStartIdx = startIndex(str, eqIdx + 1, endIdx);
var valEndIdx = endIndex(str, endIdx, valStartIdx);

2
node_modules/cookie/package.json generated vendored Executable file → Normal file
View File

@@ -1,7 +1,7 @@
{
"name": "cookie",
"description": "HTTP server cookie parsing and serialization",
"version": "0.7.1",
"version": "0.7.2",
"author": "Roman Shtylman <shtylman@gmail.com>",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>"