Home
last modified time | relevance | path

Searched refs:ignorePaths (Results 1 – 21 of 21) sorted by relevance

/expo/packages/@expo/fingerprint/src/
H A DOptions.ts57 ignorePaths: await collectIgnorePathsAsync(projectRoot, options),
62 const ignorePaths = [ constant
64 ...(options?.ignorePaths ?? []),
75 ignorePaths.push(trimmedLine);
80 return ignorePaths;
H A DFingerprint.types.ts55 ignorePaths?: string[]; property
69 ignorePaths: NonNullable<Options['ignorePaths']>; property
/expo/packages/@expo/fingerprint/build/
H A DOptions.js53 ignorePaths: await collectIgnorePathsAsync(projectRoot, options),
58 const ignorePaths = [
60 ...(options?.ignorePaths ?? []),
70 ignorePaths.push(trimmedLine);
75 return ignorePaths;
H A DFingerprint.types.d.ts48 ignorePaths?: string[]; property
58 ignorePaths: NonNullable<Options['ignorePaths']>; property
/expo/packages/@expo/fingerprint/src/utils/__tests__/
H A DPath-test.ts32 const ignorePaths = ['**/ios/**/*', '!**/ios/Podfile', '**/android/**/*']; constant
33 expect(isIgnoredPath('/app/ios/Podfile', ignorePaths)).toBe(false);
34 expect(isIgnoredPath('/app/ios/Podfile.lock', ignorePaths)).toBe(true);
/expo/packages/@expo/fingerprint/src/utils/
H A DPath.ts8 ignorePaths: string[],
11 const minimatchObjs = ignorePaths.map(
/expo/packages/@expo/fingerprint/src/sourcer/
H A DExpoConfigLoader.ts60 const ignorePaths = []; constant
67 ignorePaths.push(trimmedLine);
76 return ignorePaths;
H A DExpo.ts118 await fs.writeFile(ignoredFile, options.ignorePaths.join('\n'));
/expo/packages/@expo/fingerprint/build/utils/
H A DPath.js11 function isIgnoredPath(filePath, ignorePaths, minimatchOptions = { dot: true }) { argument
12 …const minimatchObjs = ignorePaths.map((ignorePath) => new minimatch_1.default.Minimatch(ignorePath…
H A DPath.d.ts5 export declare function isIgnoredPath(filePath: string, ignorePaths: string[], minimatchOptions?: m…
/expo/packages/@expo/fingerprint/build/sourcer/
H A DExpoConfigLoader.js55 const ignorePaths = [];
62 ignorePaths.push(trimmedLine);
71 return ignorePaths;
H A DExpo.js98 await promises_1.default.writeFile(ignoredFile, options.ignorePaths.join('\n'));
/expo/packages/expo-modules-autolinking/src/
H A Dtypes.ts8 ignorePaths?: string[] | null; property
/expo/packages/expo-modules-autolinking/build/
H A Dtypes.d.ts5 ignorePaths?: string[] | null; property
H A Dtypes.js.map1 …earchOptions {\n // Available in the CLI\n searchPaths: string[];\n ignorePaths?: string[] | nu…
H A Dindex.js.map1 …paths...]`)\n .option<string[] | null>(\n '-i, --ignore-paths <ignorePaths...>',\n 'P…
/expo/packages/@expo/fingerprint/src/hash/
H A DHash.ts110 if (isIgnoredPath(filePath, options.ignorePaths)) {
145 if (isIgnoredPath(dirPath, options.ignorePaths)) {
/expo/packages/@expo/fingerprint/build/hash/
H A DHash.js83 if ((0, Path_1.isIgnoredPath)(filePath, options.ignorePaths)) {
111 if ((0, Path_1.isIgnoredPath)(dirPath, options.ignorePaths)) {
/expo/packages/@expo/fingerprint/src/hash/__tests__/
H A DHash-test.ts135 options.ignorePaths = ['*.json'];
168 options.ignorePaths = ['ios/**/*', 'android/**/*'];
/expo/packages/@expo/fingerprint/
H A DCHANGELOG.md33 - Added `options.ignorePaths` and **.fingerprintignore** to support. ([#24265](https://github.com/e…
/expo/packages/expo-modules-autolinking/scripts/android/
H A Dautolinking_implementation.gradle169 if (options?.ignorePaths) {
171 args += options.ignorePaths