Home
last modified time | relevance | path

Searched refs:dynamicConfigPath (Results 1 – 13 of 13) sorted by relevance

/expo/packages/@expo/config/src/
H A DConfig.ts113 dynamicConfigPath: paths.dynamicConfigPath,
168 if (paths.dynamicConfigPath) {
171 paths.dynamicConfigPath,
206 dynamicConfigPath: getDynamicConfigFilePath(projectRoot),
253 if (config.dynamicConfigPath) {
271 config.dynamicConfigPath
445 if (projectConfig.dynamicConfigPath) {
446 const relativeDynamicConfigPath = path.relative(projectRoot, projectConfig.dynamicConfigPath);
H A DConfig.types.ts37 dynamicConfigPath: string | null; property
168 export type ConfigFilePaths = { staticConfigPath: string | null; dynamicConfigPath: string | null };
/expo/packages/@expo/config/src/__tests__/
H A DConfigParsing-test.ts48 dynamicConfigPath: '/app.config.ts',
80 const { exp, dynamicConfigPath, staticConfigPath } = getConfig('/', { constant
83 expect(dynamicConfigPath).toBe('/app.config.js');
93 dynamicConfigPath: '/app.config.js',
H A DConfig-test.ts10 dynamicConfigPath: '/app.config.js',
18 dynamicConfigPath: null,
25 dynamicConfigPath: '/app.config.ts',
32 dynamicConfigPath: null,
H A DgetConfig-test.ts147 expect(() => getDynamicConfig(paths.dynamicConfigPath!, mockConfigContext)).toThrowError(
155 expect(() => getDynamicConfig(paths.dynamicConfigPath!, mockConfigContext)).toThrowError(
/expo/packages/@expo/config/build/
H A DConfig.js207 dynamicConfigPath: paths.dynamicConfigPath,
254 if (paths.dynamicConfigPath) {
259 } = (0, _getConfig().getDynamicConfig)(paths.dynamicConfigPath, {
290 dynamicConfigPath: getDynamicConfigFilePath(projectRoot),
326 if (config.dynamicConfigPath) {
341 …ly write to dynamic config at: ${_path().default.relative(projectRoot, config.dynamicConfigPath)}`,
519 if (projectConfig.dynamicConfigPath) {
520 …relativeDynamicConfigPath = _path().default.relative(projectRoot, projectConfig.dynamicConfigPath);
H A DConfig.types.d.ts37 dynamicConfigPath: string | null; property
153 dynamicConfigPath: string | null;
H A DConfig.js.map1 …dynamicConfigPath","isModdedConfig","_config$mods","withConfigPlugins","skipPlugins","isPublicConf…
H A DConfig.types.js.map1 …dynamicConfigPath: string | null;\n\n /**\n * Returns the type of the value exported from the d…
/expo/packages/@expo/cli/src/prebuild/__tests__/
H A DensureConfigAsync-test.ts44 expect(config.dynamicConfigPath).toBe(null);
/expo/packages/@expo/cli/src/prebuild/
H A DensureConfigAsync.ts22 if (!config.dynamicConfigPath && !config.staticConfigPath) {
/expo/packages/@expo/cli/e2e/__tests__/
H A Dconfig-test.ts75 expect(exp._internal.dynamicConfigPath).toBe(null);
/expo/packages/@expo/cli/src/export/
H A Dfork-bundleAsync.ts50 const configFilePath = paths.dynamicConfigPath ?? paths.staticConfigPath ?? 'app.json';