Summary: Current temporary limitations: all headless plugins are bundled with Flipper. Reviewed By: antonk52 Differential Revision: D36098168 fbshipit-source-id: c58abe41776157258a5c39a80a5c1a33cf3f42c5
20 lines
485 B
TypeScript
20 lines
485 B
TypeScript
/**
|
|
* 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
|
|
*/
|
|
|
|
/* eslint-disable flipper/no-console-error-without-context */
|
|
|
|
import {prepareDefaultPlugins, prepareHeadlessPlugins} from './build-utils';
|
|
|
|
Promise.all([prepareDefaultPlugins(), prepareHeadlessPlugins()]).catch(
|
|
(err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
},
|
|
);
|