release: WRNexusJS 0.8.0
Quality / quality (ubuntu-latest) (push) Failing after 21s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-02 23:18:51 +05:30
parent 87507edf59
commit 586a6db8ff
625 changed files with 243608 additions and 11210 deletions
+7 -1
View File
@@ -10,7 +10,12 @@
* invalidated in-process by the file watcher so edits show without a restart.
*/
import { getReactiveRuntime, getNavRuntime, getRealtimeRuntime } from "@wrnexus/csr";
import {
getActionRuntime,
getReactiveRuntime,
getNavRuntime,
getRealtimeRuntime,
} from "@wrnexus/csr";
import {
renderStyles,
renderThemeCss,
@@ -91,6 +96,7 @@ export function createDevAssetServer(
if (pathname === "/__wrnexus/reactive.js") return jsResponse(getReactiveRuntime());
if (pathname === "/__wrnexus/nav.js") return jsResponse(getNavRuntime());
if (pathname === "/__wrnexus/realtime.js") return jsResponse(getRealtimeRuntime());
if (pathname === "/__wrnexus/actions.js") return jsResponse(getActionRuntime());
if (pathname === "/__wrnexus/validate.js") return jsResponse(VALIDATE_RUNTIME);
if (pathname === "/__wrnexus/i18n.js") return jsResponse(I18N_RUNTIME);
if (pathname === UPLOAD_JS_HREF) return jsResponse(UPLOAD_RUNTIME);