| /expo/packages/@expo/cli/src/utils/ |
| H A D | downloadAppAsync.ts | 21 outputPath, 26 outputPath: string; 41 debug(`Downloading ${url} to ${outputPath}`); 52 return pipeline(res.body, fs.createWriteStream(outputPath)); 57 outputPath, 63 outputPath: string; 73 const tmpPath = temporary.file({ name: path.basename(outputPath) }); 75 debug(`Extracting ${tmpPath} to ${outputPath}`); 76 await ensureDirectoryAsync(outputPath); 77 await extractAsync(tmpPath, outputPath); [all …]
|
| H A D | downloadExpoGoAsync.ts | 107 const outputPath = getFilePath(filename); constant 108 debug(`Downloading Expo Go from "${url}" to "${outputPath}".`); 116 outputPath, 137 return outputPath;
|
| /expo/packages/@expo/cli/__mocks__/ |
| H A D | resolve-from.ts | 16 let outputPath = path.join(fromDirectory, 'node_modules', request); 17 if (fs.existsSync(outputPath)) { 18 return outputPath; 20 if (!path.extname(outputPath)) { 21 outputPath += '.js'; 23 if (fs.existsSync(outputPath)) { 24 return outputPath; 26 outputPath = path.join(fromDirectory, request); 27 if (fs.existsSync(outputPath)) { 28 return outputPath;
|
| /expo/packages/@expo/config/src/__tests__/ |
| H A D | Web-test.ts | 39 const outputPath = getWebOutputPath(exp); constant 40 expect(outputPath).toBe('web-build'); 45 const outputPath = getWebOutputPath(exp); constant 46 expect(outputPath).toBe('defined-in-config'); 57 const outputPath = getWebOutputPath(exp); constant 58 expect(outputPath).toBe('custom-env-path');
|
| /expo/packages/expo-test-runner/src/ |
| H A D | TemplateFile.ts | 10 copy(projectPath: string, outputPath: string): Promise<void>; 21 async copy(projectPath: string, outputPath: string): Promise<void> { 23 join(SelfPath, 'templates', this.template, outputPath), 24 join(projectPath, outputPath), 51 copy(projectPath: string, outputPath: string): Promise<void> { 52 return fs.copy(this.userFilePath, join(projectPath, outputPath), {
|
| /expo/packages/expo-updates/plugin/__mocks__/ |
| H A D | resolve-from.ts | 16 const outputPath = path.join(fromDirectory, 'node_modules', request); constant 17 if (fs.existsSync(outputPath)) { 18 return outputPath;
|
| /expo/packages/@expo/prebuild-config/__mocks__/ |
| H A D | resolve-from.ts | 16 const outputPath = path.join(fromDirectory, 'node_modules', request); constant 17 if (fs.existsSync(outputPath)) { 18 return outputPath;
|
| /expo/packages/@expo/config/__mocks__/ |
| H A D | resolve-from.ts | 16 const outputPath = path.join(fromDirectory, 'node_modules', request); constant 17 if (fs.existsSync(outputPath)) { 18 return outputPath;
|
| /expo/packages/@expo/config-plugins/__mocks__/ |
| H A D | resolve-from.ts | 16 const outputPath = path.join(fromDirectory, 'node_modules', request); constant 17 if (fs.existsSync(outputPath)) { 18 return outputPath;
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/ |
| H A D | compose-source-maps.js | 17 let outputPath; variable 20 outputPath = argv[i + 1]; 61 if (outputPath) { 62 fs.writeFileSync(outputPath, composedMapJSON, 'utf8');
|
| H A D | generate-artifacts.js | 62 const outputPath = argv.outputPath; constant 66 outputPath,
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/ |
| H A D | compose-source-maps.js | 17 let outputPath; variable 20 outputPath = argv[i + 1]; 61 if (outputPath) { 62 fs.writeFileSync(outputPath, composedMapJSON, 'utf8');
|
| H A D | generate-codegen-artifacts.js | 62 const outputPath = argv.outputPath; constant 66 outputPath,
|
| /expo/packages/expo/scripts/ |
| H A D | compose-source-maps.js | 19 let outputPath; variable 22 outputPath = argv[i + 1]; 57 if (outputPath) { 58 fs.writeFileSync(outputPath, composedMapJSON, 'utf8');
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/ |
| H A D | compose-source-maps.js | 17 let outputPath; variable 20 outputPath = argv[i + 1]; 61 if (outputPath) { 62 fs.writeFileSync(outputPath, composedMapJSON, 'utf8');
|
| H A D | generate-codegen-artifacts.js | 62 const outputPath = argv.outputPath; constant 66 outputPath,
|
| /expo/packages/@expo/cli/src/export/ |
| H A D | exportAsync.ts | 11 const outputPath = path.resolve(projectRoot, options.outputDir); constant 13 await removeAsync(outputPath); 15 await ensureDirectoryAsync(outputPath);
|
| H A D | exportStaticAsync.ts | 87 getHtmlFiles({ manifest, includeGroupVariations }).map(async (outputPath) => { 88 const pathname = outputPath.replace(/(?:index)?\.html$/, ''); 90 files.set(outputPath, ''); 92 files.set(outputPath, data); 178 const outputPath = path.join(outputDir, file); constant 179 await fs.promises.mkdir(path.dirname(outputPath), { recursive: true }); 180 await fs.promises.writeFile(outputPath, contents);
|
| /expo/tools/src/commands/ |
| H A D | AndroidDownloadVersionedAars.ts | 36 async function downloadFileAsync(url: string, outputPath: string) { 39 const outputModified = await getFileModifedAsync(outputPath); 54 await fs.move(tmpFilePath, outputPath, { overwrite: true }); 62 async function downloadFileNonThrowAsync(url: string, outputPath: string) { 64 await downloadFileAsync(url, outputPath);
|
| /expo/packages/expo-test-runner/build/ |
| H A D | TemplateFile.d.ts | 5 copy(projectPath: string, outputPath: string): Promise<void>; 13 copy(projectPath: string, outputPath: string): Promise<void>; 21 copy(projectPath: string, outputPath: string): Promise<void>;
|
| H A D | TemplateFile.js | 40 async copy(projectPath, outputPath) { argument 41 …in)(Paths_1.SelfPath, 'templates', this.template, outputPath), (0, path_1.join)(projectPath, outpu… 62 copy(projectPath, outputPath) { argument 63 return fs.copy(this.userFilePath, (0, path_1.join)(projectPath, outputPath), {
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/codegen/ |
| H A D | generate-legacy-interop-components.js | 34 const outputPath = argv.outputPath; constant 119 const filePath = `${outputPath}/${OUTPUT_FILE_NAME}`;
|
| /expo/tools/src/prebuilds/ |
| H A D | XcodeProject.ts | 118 const outputPath = this.getXcframeworkPath(); constant 120 await fs.remove(outputPath); 123 ['-create-xcframework', ...spreadArgs('-framework', frameworkPaths), '-output', outputPath], 126 return outputPath;
|
| /expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-splash-screen/ |
| H A D | withAndroidSplashImages.ts | 164 const outputPath = path.join( constant 170 const folder = path.dirname(outputPath); 173 await fs.writeFile(outputPath, source);
|
| /expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/ |
| H A D | withAndroidSplashImages.js | 169 const outputPath = _path().default.join(androidMainPath, 173 const folder = _path().default.dirname(outputPath); 176 await _fsExtra().default.writeFile(outputPath, source);
|