Home
last modified time | relevance | path

Searched refs:projectPath (Results 1 – 25 of 25) sorted by relevance

/expo/packages/expo-yarn-workspaces/bin/
H A Dsymlink-necessary-packages.js14 function symlinkNecessaryPackages(projectPath) { argument
15 projectPath = path.resolve(projectPath);
17 symlinkNecessaryPackage(projectPath, 'expo');
18 symlinkNecessaryPackage(projectPath, 'react-native');
20 symlinkNecessaryPackage(projectPath, 'jsc-android');
21 symlinkNecessaryPackage(projectPath, 'hermes-engine');
26 const packageJson = getProjectPackageJson(projectPath);
34 symlinkNecessaryPackage(projectPath, symlink);
39 function getProjectPackageJson(projectPath) { argument
48 function symlinkNecessaryPackage(projectPath, packageName) { argument
[all …]
H A Dmake-entry-module.js15 function makeEntryModule(projectPath) { argument
16 debug(`Checking the main module for the project at %s`, projectPath);
18 const packageJson = readPackageJson(projectPath);
35 const mainModulePath = path.join(projectPath, mainModule);
65 let relativeProjectPath = path.relative(fs.realpathSync(mainModuleDirectory), projectPath);
78 function readPackageJson(projectPath) { argument
81 json = fs.readFileSync(path.join(projectPath, 'package.json'), 'utf8');
/expo/packages/expo-test-runner/src/
H A DTemplateProject.ts28 async createApplicationAsync(projectPath: string) {
30 const parentFolder = path.resolve(projectPath, '..');
46 cwd: projectPath,
78 path.join(projectPath, 'package.json'),
108 cwd: projectPath,
113 await this.copyFilesAsync(projectPath, templateFiles);
114 await this.evaluateFiles(projectPath, templateFiles);
120 cwd: projectPath,
176 cwd: projectPath,
185 bundler = new BundlerController(projectPath);
[all …]
H A DTemplateFile.ts10 copy(projectPath: string, outputPath: string): Promise<void>;
11 evaluate(projectPath: string, filePath: string, evaluator: TemplateEvaluator): Promise<void>;
21 async copy(projectPath: string, outputPath: string): Promise<void> {
24 join(projectPath, outputPath),
32 projectPath: string,
37 return evaluator.compileFileAsync(join(projectPath, filePath));
51 copy(projectPath: string, outputPath: string): Promise<void> {
52 return fs.copy(this.userFilePath, join(projectPath, outputPath), {
57 evaluate(projectPath: string, filePath: string, evaluator: any): Promise<void> {
59 return evaluator.compileFileAsync(join(projectPath, filePath));
/expo/packages/expo-yarn-workspaces/
H A Dindex.js19 exports.createMetroConfiguration = function createMetroConfiguration(projectPath, options) { argument
20 projectPath = path.resolve(projectPath);
21 debug(`Creating a Metro configuration for the project at %s`, projectPath);
26 } = getDefaultConfig(projectPath, options);
31 const workspaceRootPath = findYarnWorkspaceRoot(projectPath);
37 ...getSymlinkedNodeModulesForDirectory(projectPath),
42 extraNodeModules = getSymlinkedNodeModulesForDirectory(projectPath);
48 projectRoot: projectPath,
/expo/packages/expo-test-runner/build/
H A DTemplateProject.js31 async createApplicationAsync(projectPath) { argument
47 cwd: projectPath,
98 cwd: projectPath,
102 await this.evaluateFiles(projectPath, templateFiles);
107 cwd: projectPath,
134 async copyFilesAsync(projectPath, files) { argument
137 async evaluateFiles(projectPath, files) { argument
141 async build(projectPath, test) { argument
144 cwd: projectPath,
149 async run(projectPath, test) { argument
[all …]
H A DTemplateFile.d.ts5 copy(projectPath: string, outputPath: string): Promise<void>;
6 evaluate(projectPath: string, filePath: string, evaluator: TemplateEvaluator): Promise<void>;
13 copy(projectPath: string, outputPath: string): Promise<void>;
14 evaluate(projectPath: string, filePath: string, evaluator: TemplateEvaluator): Promise<void>;
21 copy(projectPath: string, outputPath: string): Promise<void>;
22 evaluate(projectPath: string, filePath: string, evaluator: any): Promise<void>;
H A DTemplateProject.d.ts12 createApplicationAsync(projectPath: string): Promise<void>;
17 protected copyFilesAsync(projectPath: string, files: {
20 protected evaluateFiles(projectPath: string, files: {
23 build(projectPath: string, test: DetoxTest): Promise<void>;
24 run(projectPath: string, test: DetoxTest): Promise<void>;
H A DTemplateFile.js40 async copy(projectPath, outputPath) { argument
41 …s_1.SelfPath, 'templates', this.template, outputPath), (0, path_1.join)(projectPath, outputPath), {
45 async evaluate(projectPath, filePath, evaluator) { argument
47 return evaluator.compileFileAsync((0, path_1.join)(projectPath, filePath));
62 copy(projectPath, outputPath) { argument
63 return fs.copy(this.userFilePath, (0, path_1.join)(projectPath, outputPath), {
67 evaluate(projectPath, filePath, evaluator) { argument
69 return evaluator.compileFileAsync((0, path_1.join)(projectPath, filePath));
H A DTemplateFile.js.map1projectPath: string, outputPath: string): Promise<void>;\n evaluate(projectPath: string, filePath…
H A DTemplateProject.js.map1projectPath: string) {\n // TODO: this assumes there is a parent folder\n const parentFolder…
/expo/packages/@expo/config-plugins/src/android/
H A DPaths.ts106 const projectPath = path.join(projectRoot, 'android'); constant
107 if (await directoryExistsAsync(projectPath)) {
108 return projectPath;
114 const projectPath = await getProjectPathOrThrowAsync(projectRoot); constant
115 const filePath = path.join(projectPath, 'app/src/main/AndroidManifest.xml');
120 const projectPath = await getProjectPathOrThrowAsync(projectRoot); constant
121 return path.join(projectPath, `app/src/main/res`);
/expo/apps/bare-expo/
H A Djest-puppeteer.config.js9 const projectPath = process.cwd(); constant
22 return `node ${cliBin} start ${projectPath} --web --https`;
27 const buildFolder = path.resolve(projectPath, 'web-build');
/expo/packages/expo-modules-autolinking/e2e/__tests__/
H A Dmonorepo-test.ts23 function projectPath(app: string): string { function
48 cwd: projectPath(app),
73 cwd: projectPath(app),
83 cwd: projectPath(app),
102 const appPath = projectPath(app);
/expo/packages/@expo/config-plugins/build/android/
H A DPaths.js131 const projectPath = path().join(projectRoot, 'android');
132 if (await (0, _modules().directoryExistsAsync)(projectPath)) {
133 return projectPath;
138 const projectPath = await getProjectPathOrThrowAsync(projectRoot);
139 const filePath = path().join(projectPath, 'app/src/main/AndroidManifest.xml');
143 const projectPath = await getProjectPathOrThrowAsync(projectRoot);
144 return path().join(projectPath, `app/src/main/res`);
H A DPaths.js.map1projectPath","directoryExistsAsync","getAndroidManifestAsync","getResourceFolderAsync","getResourc…
/expo/tools/src/
H A DCocoaPods.ts52 projectPath: string,
61 cwd: projectPath,
/expo/packages/@expo/cli/src/prebuild/
H A DcopyTemplateFiles.ts107 const projectPath = path.join(projectRoot, copyFilePath); constant
108 if (!(await directoryExistsAsync(projectPath))) {
110 copySync(path.join(templateDirectory, copyFilePath), projectPath);
/expo/tools/src/android-update-native-dependencies/
H A DandroidProjectReports.ts159 const projectPath = path.dirname(gradleFilePath).endsWith('android') constant
162 const projectName = projectPath.includes('/packages/')
163 ? path.relative(Directories.getPackagesDir(), projectPath)
164 : path.relative(Directories.getExpoRepositoryRootDir(), projectPath);
175 projectPath,
H A Dtypes.ts66 projectPath: string; property
/expo/packages/@expo/config-plugins/src/ios/utils/
H A DXcodeproj.ts329 const projectPath = Paths.getPBXProjectPath(projectRoot); constant
330 const project = xcode.project(projectPath);
/expo/packages/@expo/config-plugins/build/ios/utils/
H A DXcodeproj.js332 const projectPath = Paths().getPBXProjectPath(projectRoot);
333 const project = _xcode().default.project(projectPath);
H A DXcodeproj.js.map1projectPath","getPBXProjectPath","xcode","parseSync","getProductName","productName","_project$getF…
/expo/packages/@expo/cli/ts-declarations/xcode/
H A Dindex.d.ts462 export function project(projectPath: string): XcodeProject;
/expo/packages/expo-updates/ts-declarations/xcode/
H A Dindex.d.ts460 export function project(projectPath: string): XcodeProject;