Home
last modified time | relevance | path

Searched refs:bundleOutput (Results 1 – 5 of 5) sorted by relevance

/expo/packages/@expo/cli/src/export/
H A DprintBundleSizes.ts14 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 Dfork-bundleAsync.ts140 bundleOutput: BundleOutput
153 bundleOutput.code,
154 bundleOutput.map!,
157 bundleOutput.hermesBytecodeBundle = hermesBundleOutput.hbc;
158 bundleOutput.hermesSourcemap = hermesBundleOutput.sourcemap;
160 return bundleOutput;
H A DwriteContents.ts50 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 DresolveOptions.ts19 bundleOutput: string; property
49 const bundleOutput = args['--bundle-output']; constant
50 if (!bundleOutput) {
60 bundleOutput,
H A DexportEmbedAsync.ts60 fs.mkdirSync(path.dirname(options.bundleOutput), { recursive: true, mode: 0o755 });