Files
react-native/packages/core-cli-utils/src/index.js
T
Blake Friedman 4a58f06c13 Fast follows from RFC-0759 cli feedback
Summary:
Updated linters, include typings in `package.json` and removed bun from the clean commands.

Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D54493859

fbshipit-source-id: eb28d208de722c90916b14f56d5a8e847bb3d859
2024-03-19 05:29:34 -07:00

24 lines
580 B
JavaScript

/**
* 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.
*
* @flow strict-local
* @format
* @oncall react_native
*/
import {tasks as android} from './private/android.js';
import {tasks as apple} from './private/apple.js';
import {tasks as clean} from './private/clean.js';
/* eslint sort-keys : "error" */
export default {
android: typeof android,
apple: typeof apple,
clean: typeof clean,
};
export type {Task} from './private/types';