mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-28 12:15:37 +08:00
Move private-cli commands to local-cli
Summary: public We cannot remove `local-cli` because is referenced by the global cli explicitly. If we do so, people would have to upgrate this global thin cli which will cause some pain. So, lets move `private-cli` commands into `local-cli` instead. Reviewed By: frantic Differential Revision: D2571983 fb-gh-sync-id: 712c29430203660fb6f0d5f23813cb2a7156ee48
This commit is contained in:
committed by
facebook-github-bot-3
parent
24537e3726
commit
849aa4dae6
113
local-cli/dependencies/dependencies.js
Normal file
113
local-cli/dependencies/dependencies.js
Normal file
@@ -0,0 +1,113 @@
|
||||
/**
|
||||
* Copyright (c) 2015-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
const fs = require('fs');
|
||||
const log = require('../util/log').out('dependencies');
|
||||
const parseCommandLine = require('../../packager/parseCommandLine');
|
||||
const path = require('path');
|
||||
const Promise = require('promise');
|
||||
const ReactPackager = require('../../packager/react-packager');
|
||||
|
||||
/**
|
||||
* Returns the dependencies an entry path has.
|
||||
*/
|
||||
function dependencies(argv, config) {
|
||||
return new Promise((resolve, reject) => {
|
||||
_dependencies(argv, config, resolve, reject);
|
||||
});
|
||||
}
|
||||
|
||||
function _dependencies(argv, config, resolve, reject) {
|
||||
const args = parseCommandLine([
|
||||
{
|
||||
command: 'entry-file',
|
||||
description: 'Absolute path to the root JS file',
|
||||
type: 'string',
|
||||
required: true,
|
||||
}, {
|
||||
command: 'output',
|
||||
description: 'File name where to store the output, ex. /tmp/dependencies.txt',
|
||||
type: 'string',
|
||||
}, {
|
||||
command: 'platform',
|
||||
description: 'The platform extension used for selecting modules',
|
||||
type: 'string',
|
||||
}, {
|
||||
command: 'transformer',
|
||||
type: 'string',
|
||||
default: require.resolve('../../packager/transformer'),
|
||||
description: 'Specify a custom transformer to be used (absolute path)'
|
||||
}, {
|
||||
command: 'verbose',
|
||||
description: 'Enables logging',
|
||||
default: false,
|
||||
}
|
||||
], argv);
|
||||
|
||||
const rootModuleAbsolutePath = args['entry-file'];
|
||||
if (!fs.existsSync(rootModuleAbsolutePath)) {
|
||||
reject(`File ${rootModuleAbsolutePath} does not exist`);
|
||||
}
|
||||
|
||||
const packageOpts = {
|
||||
projectRoots: config.getProjectRoots(),
|
||||
assetRoots: config.getAssetRoots(),
|
||||
blacklistRE: config.getBlacklistRE(args.platform),
|
||||
transformModulePath: args.transformer,
|
||||
verbose: config.verbose,
|
||||
};
|
||||
|
||||
const relativePath = packageOpts.projectRoots.map(root =>
|
||||
path.relative(
|
||||
root,
|
||||
rootModuleAbsolutePath
|
||||
)
|
||||
)[0];
|
||||
|
||||
const options = {
|
||||
platform: args.platform,
|
||||
entryFile: relativePath,
|
||||
};
|
||||
|
||||
const writeToFile = args.output;
|
||||
const outStream = writeToFile
|
||||
? fs.createWriteStream(args.output)
|
||||
: process.stdout;
|
||||
|
||||
// TODO: allow to configure which logging namespaces should get logged
|
||||
// log('Running ReactPackager');
|
||||
// log('Waiting for the packager.');
|
||||
resolve(ReactPackager.createClientFor(packageOpts).then(client => {
|
||||
// log('Packager client was created');
|
||||
return client.getOrderedDependencyPaths(options)
|
||||
.then(deps => {
|
||||
// log('Packager returned dependencies');
|
||||
client.close();
|
||||
|
||||
deps.forEach(modulePath => {
|
||||
// Temporary hack to disable listing dependencies not under this directory.
|
||||
// Long term, we need either
|
||||
// (a) JS code to not depend on anything outside this directory, or
|
||||
// (b) Come up with a way to declare this dependency in Buck.
|
||||
const isInsideProjectRoots = packageOpts.projectRoots.filter(
|
||||
root => modulePath.startsWith(root)
|
||||
).length > 0;
|
||||
|
||||
if (isInsideProjectRoots) {
|
||||
outStream.write(modulePath + '\n');
|
||||
}
|
||||
});
|
||||
writeToFile && outStream.end();
|
||||
// log('Wrote dependencies to output file');
|
||||
});
|
||||
}));
|
||||
}
|
||||
|
||||
module.exports = dependencies;
|
||||
Reference in New Issue
Block a user