mirror of
https://github.com/status-im/react-native.git
synced 2025-01-13 11:05:21 +00:00
f0daaf3568
Summary: In this diff I change the internal react-native cli to use our new configuration. Another change here is that Metro starts using the new configuration already as its entry points (like `metro#runMetro`). Reviewed By: rafeca Differential Revision: D8728612 fbshipit-source-id: 9f43dee31ebaccd35cf6274d5c4dec0a227a6eec
35 lines
871 B
JavaScript
35 lines
871 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const buildBundle = require('./buildBundle');
|
|
const bundleCommandLineArgs = require('./bundleCommandLineArgs');
|
|
const outputBundle = require('metro/src/shared/output/bundle');
|
|
|
|
/**
|
|
* Builds the bundle starting to look for dependencies at the given entry path.
|
|
*/
|
|
function bundleWithOutput(argv, configPromise, args, output) {
|
|
if (!output) {
|
|
output = outputBundle;
|
|
}
|
|
return buildBundle(args, configPromise, output);
|
|
}
|
|
|
|
module.exports = {
|
|
name: 'bundle',
|
|
description: 'builds the javascript bundle for offline use',
|
|
func: bundleWithOutput,
|
|
options: bundleCommandLineArgs,
|
|
|
|
// not used by the CLI itself
|
|
withOutput: bundleWithOutput,
|
|
};
|