mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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
24 lines
580 B
JavaScript
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';
|