Searched refs:bundleOutput (Results 1 – 5 of 5) sorted by relevance
| /expo/packages/@expo/cli/src/export/ |
| H A D | printBundleSizes.ts | 14 for (const [platform, bundleOutput] of Object.entries(bundles) as [ constant 18 if (bundleOutput.hermesBytecodeBundle) { 19 files.push([chalk.bold(`index.${platform}.hbc`), bundleOutput.hermesBytecodeBundle]); 20 } else if (bundleOutput.code) { 21 files.push([chalk.bold(`index.${platform}.js`), bundleOutput.code]); 23 if (bundleOutput.hermesSourcemap) { 24 files.push([chalk.dim(`index.${platform}.hbc.map`), bundleOutput.hermesSourcemap]); 25 } else if (bundleOutput.map) { 26 files.push([chalk.dim(`index.${platform}.js.map`), bundleOutput.map]);
|
| H A D | fork-bundleAsync.ts | 140 bundleOutput: BundleOutput 153 bundleOutput.code, 154 bundleOutput.map!, 157 bundleOutput.hermesBytecodeBundle = hermesBundleOutput.hbc; 158 bundleOutput.hermesSourcemap = hermesBundleOutput.sourcemap; 160 return bundleOutput;
|
| H A D | writeContents.ts | 50 for (const [platform, bundleOutput] of Object.entries(bundles) as [ constant 58 const bundle = bundleOutput.hermesBytecodeBundle ?? bundleOutput.code; constant 62 format: bundleOutput.hermesBytecodeBundle ? 'bytecode' : 'javascript',
|
| /expo/packages/@expo/cli/src/export/embed/ |
| H A D | resolveOptions.ts | 19 bundleOutput: string; property 49 const bundleOutput = args['--bundle-output']; constant 50 if (!bundleOutput) { 60 bundleOutput,
|
| H A D | exportEmbedAsync.ts | 60 fs.mkdirSync(path.dirname(options.bundleOutput), { recursive: true, mode: 0o755 });
|