Skip to content

Commit b00c497

Browse files
martinbigiofacebook-github-bot-7
authored andcommitted
Use new cli on fbt string extraction script
Reviewed By: frantic Differential Revision: D2534971 fb-gh-sync-id: b008c21c2194c59e8b2b83402841292cee8d85e8
1 parent 24bfdda commit b00c497

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

private-cli/src/dependencies/dependencies.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,14 @@ function _dependencies(argv, config, resolve, reject) {
7171
? fs.createWriteStream(args.output)
7272
: process.stdout;
7373

74-
log('Running ReactPackager');
75-
log('Waiting for the packager.');
74+
// TODO: allow to configure which logging namespaces should get logged
75+
// log('Running ReactPackager');
76+
// log('Waiting for the packager.');
7677
resolve(ReactPackager.createClientFor(packageOpts).then(client => {
77-
log('Packager client was created');
78+
// log('Packager client was created');
7879
return client.getOrderedDependencyPaths(options)
7980
.then(deps => {
80-
log('Packager returned dependencies');
81+
// log('Packager returned dependencies');
8182
client.close();
8283

8384
deps.forEach(modulePath => {
@@ -94,7 +95,7 @@ function _dependencies(argv, config, resolve, reject) {
9495
}
9596
});
9697
writeToFile && outStream.end();
97-
log('Wrote dependencies to output file');
98+
// log('Wrote dependencies to output file');
9899
});
99100
}));
100101
}

0 commit comments

Comments
 (0)