Searched refs:isIgnoredPath (Results 1 – 8 of 8) sorted by relevance
| /expo/packages/@expo/fingerprint/src/utils/__tests__/ |
| H A D | Path-test.ts | 1 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 D | Path.js | 6 exports.isIgnoredPath = void 0; 11 function isIgnoredPath(filePath, ignorePaths, minimatchOptions = { dot: true }) { function 25 exports.isIgnoredPath = isIgnoredPath;
|
| H A D | Path.d.ts | 5 export declare function isIgnoredPath(filePath: string, ignorePaths: string[], minimatchOptions?: m… function
|
| /expo/packages/@expo/fingerprint/src/sourcer/ |
| H A D | ExpoConfigLoader.ts | 11 import { isIgnoredPath } from '../utils/Path'; 34 (modulePath) => !isIgnoredPath(modulePath, ignoredPaths)
|
| /expo/packages/@expo/fingerprint/src/hash/ |
| H A D | Hash.ts | 15 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 D | Path.ts | 6 export function isIgnoredPath( function
|
| /expo/packages/@expo/fingerprint/build/hash/ |
| H A D | Hash.js | 83 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 D | ExpoConfigLoader.js | 32 …const filteredLoadedModules = loadedModules.filter((modulePath) => !(0, Path_1.isIgnoredPath)(modu…
|