Home
last modified time | relevance | path

Searched refs:sourceGitIgnorePath (Results 1 – 2 of 2) sorted by relevance

/expo/packages/@expo/cli/src/utils/__tests__/
H A DmergeGitIgnorePaths-test.ts94 const sourceGitIgnorePath = path.join(projectRoot, '.gitignore-other'); constant
96 sourceGitIgnorePath,
106 expect(GitIgnore.mergeGitIgnorePaths(targetGitIgnorePath, sourceGitIgnorePath)).toBe(null);
124 const sourceGitIgnorePath = path.join(projectRoot, '.gitignore-other'); constant
126 sourceGitIgnorePath,
136 const results = GitIgnore.mergeGitIgnorePaths(targetGitIgnorePath, sourceGitIgnorePath);
/expo/packages/@expo/cli/src/utils/
H A DmergeGitIgnorePaths.ts25 sourceGitIgnorePath: string
33 if (!fs.existsSync(sourceGitIgnorePath)) {
39 const sourceGitIgnore = fs.readFileSync(sourceGitIgnorePath).toString();