/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
private/core-cli-utils/src/index.js
21 строка
601 B
Alex Hunt
Move core-cli-utils to private/ as a reference implementation (#56922)
22 май 2026, 22:36
22 май 2026, 22:36
9c3fddf
Код
Авторство
О чём код?
/** * 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 */ /*:: export type {Task} from './private/types'; */ const {tasks: android} = require('./private/android.js'); const {tasks: app} = require('./private/app.js'); const {tasks: apple} = require('./private/apple.js'); const {tasks: clean} = require('./private/clean.js'); const version = require('./public/version.js'); module.exports = {android, app, apple, clean, version};