Home
last modified time | relevance | path

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

/expo/tools/src/commands/
H A DSetupReactNativeNightly.ts11 import { transformFileAsync } from '../Transforms';
105 await transformFileAsync(
127 await transformFileAsync(path.join(reactNativeRoot, 'React-Core.podspec'), [
136 await transformFileAsync(
150 await transformFileAsync(
163 await transformFileAsync(
181 await transformFileAsync(
199 await transformFileAsync(
227 await transformFileAsync(path.join(root, 'ios', 'Podfile'), [
272 await transformFileAsync(gradleFile, [
[all …]
H A DGenerateSDKDocs.ts8 import { transformFileAsync } from '../Transforms';
81 await transformFileAsync(apiFilePath, [
/expo/tools/src/versioning/android/
H A Dindex.ts78 await transformFileAsync(
105 await transformFileAsync(
123 await transformFileAsync(
136 await transformFileAsync(
149 await transformFileAsync(sdkVersionsPath, new RegExp(`"${version}",\s*`, 'g'), '');
156 await transformFileAsync(
316 await transformFileAsync(
386 await transformFileAsync(
391 await transformFileAsync(
397 await transformFileAsync(
[all …]
H A DversionReactNative.ts7 import { copyFileWithTransformsAsync, transformFileAsync } from '../../Transforms';
68 await transformFileAsync(
/expo/tools/src/publish-packages/tasks/
H A DupdateAndroidProjects.ts8 import { transformFileAsync } from '../../Transforms';
43 await transformFileAsync(gradlePath, [
/expo/tools/src/versioning/android/versionCxx/
H A Dindex.ts10 transformFileAsync,
198 await transformFileAsync(file, [
/expo/tools/src/vendoring/config/
H A DexpoGoConfig.ts9 import { transformFileAsync } from '../../Transforms';
156 await transformFileAsync(path.join(targetDirectory, 'android', 'build.gradle'), [
/expo/tools/src/
H A DTransforms.ts115 export async function transformFileAsync( function