v1.11.0
·
54 commits
to main
since this release
Minor Changes
-
#66
e11d012Thanks @flyon! - Native.envsupport, app-name for the client bundle, and standalone SSR single-instance fixes..envloading —ensureEnvironmentLoadednow loads the app environment from a flat.envvia Node's nativeprocess.loadEnvFile(noenv-cmddependency) when no.env-cmdrc.jsonis present..env-cmdrc.jsonstill takes priority when it exists (profile-based, honours--env a,b), so existing apps are unaffected. When neither file exists the cli no longer hard-exits — it relies on the ambient environment (e.g. env injected by a host at spawn time). The original shell environment is still re-applied last, so it wins over file values.process.env.APP_NAMEis now inlined into the client bundle (likeSITE_ROOT/NODE_ENV), so components can render the app display name; defaults to'Linked App'when unset.- Standalone SSR now dedupes and bundles the React-context holders (
@_linked/server-utils,@_linked/react) into a single instance, fixing a nullAppContextduring SSR in ejected/standalone apps.