28 lines
1.5 KiB
TypeScript
28 lines
1.5 KiB
TypeScript
import { PackageJSONConfig } from '../Config.types';
|
|
export declare function ensureSlash(inputPath: string, needsSlash: boolean): string;
|
|
export declare function getPossibleProjectRoot(): string;
|
|
/** @returns the absolute entry file for an Expo project. */
|
|
export declare function resolveEntryPoint(projectRoot: string, { platform, pkg, }?: {
|
|
platform?: string;
|
|
pkg?: PackageJSONConfig;
|
|
}): string;
|
|
export declare function getFileWithExtensions(fromDirectory: string, moduleId: string, extensions: string[]): string | null;
|
|
/** Get the Metro server root, when working in monorepos */
|
|
export declare function getMetroServerRoot(projectRoot: string): string;
|
|
/**
|
|
* Get the workspace globs for Metro's watchFolders.
|
|
* @note This does not traverse the monorepo, and should be used with `getMetroServerRoot`
|
|
*/
|
|
export declare function getMetroWorkspaceGlobs(monorepoRoot: string): string[] | null;
|
|
/**
|
|
* Convert an absolute entry point to a server or project root relative filepath.
|
|
* This is useful on Android where the entry point is an absolute path.
|
|
*/
|
|
export declare function convertEntryPointToRelative(projectRoot: string, absolutePath: string): string;
|
|
/**
|
|
* Resolve the entry point relative to either the server or project root.
|
|
* This relative entry path should be used to pass non-absolute paths to Metro,
|
|
* accounting for possible monorepos and keeping the cache sharable (no absolute paths).
|
|
*/
|
|
export declare const resolveRelativeEntryPoint: typeof resolveEntryPoint;
|