PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/react-native/scripts/codegen/generate-artifacts-executor

Просмотр файла: generateFBReactNativeSpecIOS.js

/**
 * 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
 */

'use strict';

const {generateCode} = require('./generateNativeCode');
const {generateSchemaInfo} = require('./generateSchemaInfos');
const {
  buildCodegenIfNeeded,
  findProjectRootLibraries,
  readPkgJsonInDirectory,
} = require('./utils');

function generateFBReactNativeSpecIOS(projectRoot /*: string */) /*: void*/ {
  const platform = 'ios';
  buildCodegenIfNeeded();
  const pkgJson = readPkgJsonInDirectory(projectRoot);
  const fbReactNativeSpecLib = findProjectRootLibraries(
    pkgJson,
    projectRoot,
  ).filter(library => library.config.name === 'FBReactNativeSpec')[0];
  if (!fbReactNativeSpecLib) {
    throw new Error(
      "[Codegen] Can't find FBReactNativeSpec library. Failed to generate artifacts",
    );
  }
  const fbReactNativeSchemaInfo = generateSchemaInfo(
    fbReactNativeSpecLib,
    platform,
  );
  generateCode('', fbReactNativeSchemaInfo, false, platform);
}

module.exports = {
  generateFBReactNativeSpecIOS,
};

Выполнить команду


Для локальной разработки. Не используйте в интернете!