chore: update deps (npm update) and dedupe; lint+types clean

This commit is contained in:
Gigi
2025-10-07 06:47:01 +01:00
parent 8285df487f
commit 06116c3665
862 changed files with 1153 additions and 1135 deletions

View File

@@ -1,7 +1,7 @@
/*
@license
Rollup.js v4.52.3
Sat, 27 Sep 2025 07:05:38 GMT - commit 74c555c8e9ef7b62c2f57925bb2a5c0627ef8ae1
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca
https://github.com/rollup/rollup
@@ -42,7 +42,7 @@ function _mergeNamespaces(n, m) {
const promises__namespace = /*#__PURE__*/_interopNamespaceDefault(promises);
var version = "4.52.3";
var version = "4.52.4";
function ensureArray$1(items) {
if (Array.isArray(items)) {
@@ -15864,7 +15864,8 @@ class LogicalExpression extends NodeBase {
this.isBranchResolutionAnalysed = true;
const leftValue = this.left.getLiteralValueAtPath(EMPTY_PATH, SHARED_RECURSION_TRACKER, this);
const booleanOrUnknown = tryCastLiteralValueToBoolean(leftValue);
if (typeof booleanOrUnknown === 'symbol') {
if (typeof booleanOrUnknown === 'symbol' ||
(this.operator === '??' && typeof leftValue === 'symbol')) {
return null;
}
else {