Home
last modified time | relevance | path

Searched refs:getFileBasedHashSourceAsync (Results 1 – 9 of 9) sorted by relevance

/expo/packages/@expo/fingerprint/build/sourcer/
H A DUtils.js6 exports.stringifyJsonSorted = exports.getFileBasedHashSourceAsync = void 0;
9 async function getFileBasedHashSourceAsync(projectRoot, filePath, reason) { function
24 exports.getFileBasedHashSourceAsync = getFileBasedHashSourceAsync;
H A DUtils.d.ts2 export declare function getFileBasedHashSourceAsync(projectRoot: string, filePath: string, reason: … function
H A DBare.js16 …const result = await (0, Utils_1.getFileBasedHashSourceAsync)(projectRoot, 'android', 'bareNativeD…
27 …const result = await (0, Utils_1.getFileBasedHashSourceAsync)(projectRoot, 'ios', 'bareNativeDir');
60 …const result = await (0, Utils_1.getFileBasedHashSourceAsync)(projectRoot, '.gitignore', 'bareGitI…
H A DPatchPackage.js11 …const result = await (0, Utils_1.getFileBasedHashSourceAsync)(projectRoot, 'patches', 'patchPackag…
H A DExpo.js68 …const result = await (0, Utils_1.getFileBasedHashSourceAsync)(projectRoot, file, 'expoConfigExtern…
104 … const result = await (0, Utils_1.getFileBasedHashSourceAsync)(projectRoot, file, 'easBuild');
/expo/packages/@expo/fingerprint/src/sourcer/
H A DPatchPackage.ts3 import { getFileBasedHashSourceAsync } from './Utils';
12 const result = await getFileBasedHashSourceAsync(projectRoot, 'patches', 'patchPackage');
H A DBare.ts7 import { getFileBasedHashSourceAsync } from './Utils';
17 const result = await getFileBasedHashSourceAsync(projectRoot, 'android', 'bareNativeDir');
31 const result = await getFileBasedHashSourceAsync(projectRoot, 'ios', 'bareNativeDir');
66 const result = await getFileBasedHashSourceAsync(projectRoot, '.gitignore', 'bareGitIgnore');
H A DExpo.ts10 import { getFileBasedHashSourceAsync, stringifyJsonSorted } from './Utils';
79 const result = await getFileBasedHashSourceAsync(
127 const result = await getFileBasedHashSourceAsync(projectRoot, file, 'easBuild');
H A DUtils.ts6 export async function getFileBasedHashSourceAsync( function