Home
last modified time | relevance | path

Searched refs:TEMPLATES (Results 1 – 4 of 4) sorted by relevance

/expo/packages/@expo/cli/src/customize/
H A Dgenerate.ts4 import { DestinationResolutionProps, selectTemplatesAsync, TEMPLATES } from './templates';
24 (file) => !!TEMPLATES.find((template) => template.destination(props) === file)
29 (file) => !TEMPLATES.find((template) => template.destination(props) === file)
32 `Invalid files: ${diff.join(', ')}. Allowed: ${TEMPLATES.map((template) =>
44 TEMPLATES.findIndex((template) => template.destination(props) === file)
92 const template = TEMPLATES[file];
110 .map((file) => TEMPLATES[file].dependencies)
H A Dtemplates.ts42 export const TEMPLATES: { constant
102 return TEMPLATES.map((template, index) => {
/expo/packages/@expo/cli/src/start/server/
H A DwebTemplate.ts5 import { TEMPLATES } from '../../customize/templates';
54 filePath = TEMPLATES.find((value) => value.id === 'index.html')!.file(projectRoot);
/expo/packages/@expo/cli/src/start/server/__tests__/
H A DwebTemplate-test.ts11 TEMPLATES: [{ id: 'index.html', file: () => '/mock/index.html' }],