PHP 7.4.33
Preview: bundle.js Size: 1.80 KB
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/react-native/scripts/bundle.js
/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @format
 * @oncall react_native
 */

'use strict';

const {bundleCommand: bc} = require('@react-native/community-cli-plugin');
const {execSync} = require('child_process');
const commander = require('commander');
const {readFileSync} = require('fs');
const path = require('path');

// Commander 12.0.0 changes from the global to named export
const program = commander.program ?? commander;

program.version(
  JSON.parse(
    readFileSync(path.resolve(__dirname, '..', 'package.json'), 'utf8'),
  ).version,
);

program
  .name(bc.name)
  .description(bc.description ?? '')
  .option(
    '--config-cmd <string>',
    'Command to generate a JSON project config',
    'npx react-native config',
  )
  .option('--load-config <string>', 'JSON project config')
  .option('--verbose', 'Additional logs', () => true, false)
  .allowUnknownOption()
  .action(async function handleAction() {
    let config = null;
    let options = program.opts();
    if (options.loadConfig != null) {
      config = JSON.parse(
        options.loadConfig.replace(/^\W*'/, '').replace(/'\W*$/, ''),
      );
    } else if (options.configCmd != null) {
      config = JSON.parse(
        execSync(options.configCmd.trim(), {encoding: 'utf8'}),
      );
    }

    if (config == null) {
      throw new Error('No config provided');
    }

    await bc.func(program.args, config, options);
  });

if (bc.options != null) {
  for (const o of bc.options) {
    program.option(
      o.name,
      o.description ?? '',
      o.parse ?? (value => value),
      o.default,
    );
  }
}

if (require.main === module) {
  program.parse(process.argv);
}

module.exports = program;

Directory Contents

Dirs: 5 × Files: 12
Name Size Perms Modified Actions
cocoapods DIR
- drwxr-xr-x 2025-03-28 11:04:43
Edit Download
codegen DIR
- drwxr-xr-x 2025-03-28 11:04:43
Edit Download
hermes DIR
- drwxr-xr-x 2025-03-28 11:04:42
Edit Download
- drwxr-xr-x 2025-03-28 11:04:43
Edit Download
xcode DIR
- drwxr-xr-x 2025-03-28 11:04:43
Edit Download
1.80 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
1.73 KB lrwxr-xr-x 2025-03-28 11:04:42
Edit Download
2.92 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
1.00 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
2.10 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
1.38 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
2.66 KB lrwxr-xr-x 2025-03-28 11:04:43
Edit Download
725 B lrw-r--r-- 2025-03-28 11:04:43
Edit Download
710 B lrw-r--r-- 2025-03-28 11:04:42
Edit Download
751 B lrwxr-xr-x 2025-03-28 11:04:43
Edit Download
5.63 KB lrwxr-xr-x 2025-03-28 11:04:43
Edit Download
19.62 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).