Files
flipper/desktop/scripts/generate-plugin-entry-points.tsx
Andrey Goncharov a6d7f98cfd Bundle headless plugins
Summary: Current temporary limitations: all headless plugins are bundled with Flipper.

Reviewed By: antonk52

Differential Revision: D36098168

fbshipit-source-id: c58abe41776157258a5c39a80a5c1a33cf3f42c5
2022-05-10 05:13:24 -07:00

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);
},
);