You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Node entry of the 1.1.67 family, widened by the 1.1.81 library modes.
* The shared core for require based consumers: the build emits this entry as the cjs bundle of the node platform target, with the filesystem storage adapter, the platform clock, logger and fetch primitives wired through the platform adapter contract.
*/
export * from "./index.js";
import { mkdir, readFile, writeFile } from "node:fs/promises";
import { join } from "node:path";
import { nodeplatformadapter, stampbundle } from "./runtime.js";
stampbundle("cjs", "node.cjs");
/** The node runtime adapter: the storage seam maps onto the filesystem under the profile directory the caller configures, while the clock, logger and fetch seams bind the node platform primitives. */