@solcreek/adapter-creek 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Bundler for Cloudflare Workers.
3
+ *
4
+ * Uses wrangler (which internally uses esbuild + Turbopack-aware resolution)
5
+ * to bundle the generated worker entry into CF Workers-compatible output.
6
+ *
7
+ * This works with both webpack and Turbopack output — wrangler handles
8
+ * the custom chunk format that plain esbuild cannot follow.
9
+ */
10
+ export interface BundleOptions {
11
+ workerSource: string;
12
+ outputDir: string;
13
+ serverAssets: Map<string, string>;
14
+ wasmFiles: Map<string, string>;
15
+ distDir: string;
16
+ repoRoot: string;
17
+ standaloneDir: string;
18
+ }
19
+ export declare function bundleForWorkers(opts: BundleOptions): Promise<string[]>;
20
+ //# sourceMappingURL=bundler.d.ts.map