Home
last modified time | relevance | path

Searched refs:patchContent (Results 1 – 4 of 4) sorted by relevance

/expo/tools/src/versioning/android/versionCxx/
H A Dindex.ts53 const patchContent = await getTransformPatchContentAsync(packageName, abiName); constant
54 if (patchContent) {
55 await applyPatchForPackageAsync(packageName, patchContent);
60 if (patchContent) {
61 await revertPatchForPackageAsync(packageName, patchContent);
125 export function applyPatchForPackageAsync(packageName: string, patchContent: string) {
127 patchContent,
137 export function revertPatchForPackageAsync(packageName: string, patchContent: string) {
139 patchContent,
/expo/tools/src/vendoring/config/
H A DexpoGoConfig.ts467 const patchContent = await fs.readFile(patchFile, 'utf8'); constant
470 patchContent,
500 const patchContent = await fs.readFile(patchFile, 'utf8'); constant
503 patchContent,
523 const patchContent = await fs.readFile(patchFile, 'utf8'); constant
526 patchContent,
/expo/tools/src/commands/
H A DSetupReactNativeNightly.ts217 const patchContent = await fs.readFile(patchFile, 'utf8'); constant
218 await applyPatchAsync({ patchContent, cwd: EXPO_DIR, stripPrefixNum: 1 });
/expo/tools/src/
H A DUtils.ts149 patchContent: string;
166 procPromise.child.stdin?.write(options.patchContent);