()
| 19 | import { collectWebAssets, webAssetManifestKey } from './web-assets.mjs'; |
| 20 | |
| 21 | async function ensureBundleExists() { |
| 22 | try { |
| 23 | await stat(nativeJsBundlePath()); |
| 24 | } catch { |
| 25 | fail(`Native JS bundle not found at ${nativeJsBundlePath()}. Run 01-bundle.mjs first.`); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | async function writeSeaConfig(target) { |
| 30 | await mkdir(nativeIntermediatesDir(), { recursive: true }); |
no test coverage detected