Summary: Remove the duplicate function and centralise it as nikoant suggested. Reviewed By: fabiomassimo Differential Revision: D29548480 fbshipit-source-id: 3e931cc88198415017c557c6b7c81cb35c3f22c9
14 lines
457 B
TypeScript
14 lines
457 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
export {default as runBuild} from './runBuild';
|
|
export {default as getWatchFolders} from './getWatchFolders';
|
|
export {default as computePackageChecksum} from './computePackageChecksum';
|
|
export {default as stripSourceMapComment} from './stripSourceMap';
|