Home
last modified time | relevance | path

Searched refs:upsertGitIgnoreContents (Results 1 – 3 of 3) sorted by relevance

/expo/packages/@expo/cli/src/utils/__tests__/
H A DmergeGitIgnorePaths-test.ts6 import { removeFromGitIgnore, upsertGitIgnoreContents } from '../mergeGitIgnorePaths';
202 describe(upsertGitIgnoreContents, () => {
205 const results = upsertGitIgnoreContents(targetGitIgnorePath, 'test-string');
221 const results = upsertGitIgnoreContents(targetGitIgnorePath, 'test-string');
262 const results = upsertGitIgnoreContents(targetGitIgnorePath, 'another-test-string');
303 const results = upsertGitIgnoreContents(targetGitIgnorePath, 'test-string');
/expo/packages/@expo/cli/src/start/server/type-generation/
H A DstartTypescriptTypeGeneration.ts9 import { removeFromGitIgnore, upsertGitIgnoreContents } from '../../../utils/mergeGitIgnorePaths';
51 upsertGitIgnoreContents(path.join(projectRoot, '.gitignore'), 'expo-env.d.ts'),
/expo/packages/@expo/cli/src/utils/
H A DmergeGitIgnorePaths.ts117 export function upsertGitIgnoreContents( function