FRE-600: Fix code review blockers

- Consolidated duplicate UndoManagers to single instance
- Fixed connection promise to only resolve on 'connected' status
- Fixed WebSocketProvider import (WebsocketProvider)
- Added proper doc.destroy() cleanup
- Renamed isPresenceInitialized property to avoid conflict

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-04-25 00:08:01 -04:00
parent 65b552bb08
commit 7c684a42cc
48450 changed files with 5679671 additions and 383 deletions

12
node_modules/solid-js/web/storage/dist/storage.cjs generated vendored Normal file
View File

@@ -0,0 +1,12 @@
'use strict';
var node_async_hooks = require('node:async_hooks');
var web = require('solid-js/web');
function provideRequestEvent(init, cb) {
if (!web.isServer) throw new Error("Attempting to use server context in non-server build");
const ctx = globalThis[web.RequestContext] = globalThis[web.RequestContext] || new node_async_hooks.AsyncLocalStorage();
return ctx.run(init, cb);
}
exports.provideRequestEvent = provideRequestEvent;

10
node_modules/solid-js/web/storage/dist/storage.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import { AsyncLocalStorage } from 'node:async_hooks';
import { isServer, RequestContext } from 'solid-js/web';
function provideRequestEvent(init, cb) {
if (!isServer) throw new Error("Attempting to use server context in non-server build");
const ctx = globalThis[RequestContext] = globalThis[RequestContext] || new AsyncLocalStorage();
return ctx.run(init, cb);
}
export { provideRequestEvent };

15
node_modules/solid-js/web/storage/package.json generated vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "solid-js/web/storage",
"main": "./dist/storage.cjs",
"module": "./dist/storage.js",
"types": "./types/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/storage.js",
"require": "./dist/storage.cjs"
}
}
}

2
node_modules/solid-js/web/storage/types/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import type { RequestEvent } from "solid-js/web";
export declare function provideRequestEvent<T extends RequestEvent, U>(init: T, cb: () => U): U;