| /expo/docs/scripts/ |
| H A D | schema-sync.cjs | 2 This script updates the necessary schema for the passed-in version. 4 yarn run schema-sync 38 -> updates the schema that versions/v38.0.0/sdk/app-config.md uses 5 yarn run schema-sync unversioned -> updates the schema that versions/unversioned/sdk/app-config.md … 8 const parser = require('@apidevtools/json-schema-ref-parser'); 18 console.log('E.g., "yarn run schema-sync 38" \nor, "yarn run schema-sync unversioned"'); 26 const schema = await preprocessSchema(response.data.data.schema); 29 `public/static/schemas/unversioned/app-config-schema.json`, 30 JSON.stringify(schema.properties), 53 const schema = await preprocessSchema(response.data.data.schema); 58 async function preprocessSchema(schema) { [all …]
|
| /expo/docs/pages/eas/ |
| H A D | json.mdx | 10 import commonSchema from '~/public/static/schemas/unversioned/eas-json-build-common-schema.js'; 12 import iosSchema from '~/public/static/schemas/unversioned/eas-json-build-ios-schema.js'; 20 The following properties are available in the schema for the `build` key in **eas.json**. 22 <Collapsible summary="Example schema of multiple build profiles"> 84 <EasJsonPropertiesTable schema={commonSchema} /> 88 <EasJsonPropertiesTable schema={androidSchema} /> 92 <EasJsonPropertiesTable schema={iosSchema} /> 96 The following properties are available in the schema for the `submit` key in **eas.json**. 98 <Collapsible summary="Example schema of with production profile"> 125 <EasJsonPropertiesTable schema={submitAndroidSchema} /> [all …]
|
| /expo/packages/@expo/config-types/scripts/ |
| H A D | generate.ts | 33 return data.schema; 37 let schema = {}; variable 42 schema = (await fs.readJSON(filePath)).schema; 48 if (!schema) { 71 schema = await fetchSchemaAsync(parsedVersion); 74 const ts = await compile(schema as any, 'ExpoConfig', {
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | args.ts | 32 export function assertArgs(schema: arg.Spec, argv?: string[]): arg.Result<arg.Spec> { 33 return assertWithOptionsArgs(schema, { argv }); 37 schema: arg.Spec, 41 return arg(schema, options);
|
| /expo/tools/bin/ |
| H A D | expotools.js | 62 state.schema = await getCommandsSchemaAsync(); 74 run(state.schema); 159 const schema = {}; 169 if (!schema[name]) { 170 schema[name] = path.relative(BUILD_PATH, commandFile); 175 return schema; 185 schema: null, 226 async function run(schema) { argument 247 if (!schema[subCommandName]) { 268 const commandFilePath = path.join(BUILD_PATH, schema[subCommandName]);
|
| /expo/packages/@expo/cli/src/api/ |
| H A D | getExpoSchema.ts | 22 return schemaDerefSync(json.schema); 32 const schema = await getSchemaAsync(sdkVersion); constant 45 visit(schema, ''); 50 async function getSchemaJSONAsync(sdkVersion: string): Promise<{ schema: Schema }> {
|
| /expo/home/ |
| H A D | graphql.config.yml | 1 schema: 'graphql.schema.json'
|
| H A D | graphql-codegen.yml | 2 schema: 'https://exp.host/--/graphql' 18 ./graphql.schema.json:
|
| /expo/docs/pages/versions/unversioned/config/ |
| H A D | app.mdx | 9 import schema from '~/public/static/schemas/unversioned/app-config-schema.json'; 17 <AppConfigSchemaPropertiesTable schema={schema} />
|
| /expo/docs/pages/versions/v46.0.0/config/ |
| H A D | app.mdx | 9 import schema from '~/public/static/schemas/v46.0.0/app-config-schema.json'; 17 <AppConfigSchemaPropertiesTable schema={schema} />
|
| /expo/docs/pages/versions/v49.0.0/config/ |
| H A D | app.mdx | 9 import schema from '~/public/static/schemas/unversioned/app-config-schema.json'; 17 <AppConfigSchemaPropertiesTable schema={schema} />
|
| /expo/docs/pages/versions/v47.0.0/config/ |
| H A D | app.mdx | 9 import schema from '~/public/static/schemas/unversioned/app-config-schema.json'; 17 <AppConfigSchemaPropertiesTable schema={schema} />
|
| /expo/docs/pages/versions/v48.0.0/config/ |
| H A D | app.mdx | 9 import schema from '~/public/static/schemas/v48.0.0/app-config-schema.json'; 17 <AppConfigSchemaPropertiesTable schema={schema} />
|
| /expo/packages/expo-updates/guides/ |
| H A D | migrations.md | 5 This document provides instructions for adding migrations to expo-updates' local SQLite db schema. 12 …OS, there's no automatic schema verification, so it's really important to verify that your migrati… 21 On Android, we don't have control over the SQLite schema at a language level; it's auto-generated b… 25 1. Make the desired schema changes in the entity classes. 33 … migration might not be fully correct (i.e. the resulting DB schema doesn't match the schema of a … 34 9. Undo the changes in step 7, and commit the new JSON schema. 37 …ly rather than the Room DAO objects/methods since Room will always be tied to the latest DB schema. 47 Note that we use the filename of the database to determine the schema version number. 52 2. Make your changes to the schema in EXUpdatesDatabaseInitialization.m, and increment the version … 59 …schema _identical_ to the one in EXUpdatesDatabaseInitialization.m. Unlike on Android, we don't cu… [all …]
|
| /expo/packages/expo-dev-launcher/plugin/src/ |
| H A D | pluginConfig.ts | 35 const schema: JSONSchemaType<PluginConfigType> = { constant 60 const validate = new Ajv({ allowUnionTypes: true }).compile(schema);
|
| /expo/packages/expo-router/plugin/build/ |
| H A D | index.js | 5 const schema = require('../options.json'); constant 23 (0, schema_utils_1.validate)(schema, props);
|
| /expo/packages/expo-router/plugin/src/ |
| H A D | index.ts | 4 const schema = require('../options.json'); constant 36 validate(schema, props);
|
| /expo/packages/expo-dev-launcher/plugin/build/ |
| H A D | pluginConfig.js | 8 const schema = { variable 32 const validate = new ajv_1.default({ allowUnionTypes: true }).compile(schema);
|
| /expo/packages/expo-updates/cli/utils/ |
| H A D | args.ts | 31 export function assertArgs(schema: arg.Spec, argv: string[]): arg.Result<arg.Spec> { 33 return arg(schema, { argv });
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/codegen/__tests__/ |
| H A D | generate-specs-cli-executor-test.js | 67 expect(libraryConfig.schema).toStrictEqual(fixtures.schema);
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/codegen/__tests__/ |
| H A D | generate-specs-cli-executor-test.js | 67 expect(libraryConfig.schema).toStrictEqual(fixtures.schema);
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/codegen/__tests__/ |
| H A D | generate-specs-cli-executor-test.js | 69 expect(libraryConfig.schema).toStrictEqual(fixtures.schema);
|
| /expo/packages/@expo/cli/ts-declarations/json-schema-deref-sync/ |
| H A D | index.d.ts | 41 export default function deref(schema: object, options?: object): object | Error;
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/codegen/ |
| H A D | generate-specs-cli-executor.js | 84 let schema = readAndParseSchema(schemaPath); 100 schema,
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/codegen/ |
| H A D | generate-specs-cli-executor.js | 84 let schema = readAndParseSchema(schemaPath); 100 schema,
|