Home
last modified time | relevance | path

Searched refs:isIgnoredPath (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/fingerprint/src/utils/__tests__/
H A DPath-test.ts1 import { isIgnoredPath } from '../Path';
3 describe(isIgnoredPath, () => {
5 expect(isIgnoredPath('app.json', ['app.json'])).toBe(true);
6 expect(isIgnoredPath('app.ts', ['*.{js,ts}'])).toBe(true);
7 expect(isIgnoredPath('/dir/app.json', ['/dir/*.json'])).toBe(true);
11 expect(isIgnoredPath('/app/ios/Podfile', ['**/ios/**/*'])).toBe(true);
15 expect(isIgnoredPath('app.json', ['APP.JSON'])).toBe(false);
19 expect(isIgnoredPath('.bashrc', ['*'])).toBe(true);
23 expect(isIgnoredPath('/dir/app.json', ['app.json'])).toBe(false);
27 expect(isIgnoredPath('/dir/app.ts', ['*'])).toBe(false);
[all …]
/expo/packages/@expo/fingerprint/build/utils/
H A DPath.js6 exports.isIgnoredPath = void 0;
11 function isIgnoredPath(filePath, ignorePaths, minimatchOptions = { dot: true }) { function
25 exports.isIgnoredPath = isIgnoredPath;
H A DPath.d.ts5 export declare function isIgnoredPath(filePath: string, ignorePaths: string[], minimatchOptions?: m… function
/expo/packages/@expo/fingerprint/src/sourcer/
H A DExpoConfigLoader.ts11 import { isIgnoredPath } from '../utils/Path';
34 (modulePath) => !isIgnoredPath(modulePath, ignoredPaths)
/expo/packages/@expo/fingerprint/src/hash/
H A DHash.ts15 import { isIgnoredPath } from '../utils/Path';
110 if (isIgnoredPath(filePath, options.ignorePaths)) {
145 if (isIgnoredPath(dirPath, options.ignorePaths)) {
/expo/packages/@expo/fingerprint/src/utils/
H A DPath.ts6 export function isIgnoredPath( function
/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/build/sourcer/
H A DExpoConfigLoader.js32 …const filteredLoadedModules = loadedModules.filter((modulePath) => !(0, Path_1.isIgnoredPath)(modu…