Home
last modified time | relevance | path

Searched refs:changelogPath (Results 1 – 10 of 10) sorted by relevance

/expo/tools/src/android-update-native-dependencies/
H A DupdateChangelogFiles.ts16 .filter((update) => update.report.changelogPath)
18 const changelog = Changelogs.loadFrom(report.changelogPath!);
H A DandroidProjectReports.ts134 const changelogPath = path.resolve(reportPath, '../../../../CHANGELOG.md'); constant
138 if (!(await pathExists(changelogPath))) {
141 return changelogPath;
177 changelogPath: await findChangelogFilePath(reportPath),
H A Dtypes.ts70 changelogPath: string | null; property
/expo/tools/src/code-review/reviewers/
H A DcheckMissingChangelogs.ts32 const pkgHasChangelog = await fs.pathExists(pkg.changelogPath);
33 return pkgHasChangelog && diff.every((fileDiff) => fileDiff.path !== pkg.changelogPath);
66 const relativePath = path.relative(EXPO_DIR, pkg.changelogPath);
/expo/tools/src/commands/
H A DSyncSdkBranchChangelogs.ts61 await Git.readFileAsync(`origin/${sourceBranch}`, pkg.changelogPath)
63 const targetChangelog = new Changelog(pkg.changelogPath);
H A DMergeChangelogs.ts112 const changelog = new Changelog(pkg.changelogPath);
/expo/tools/src/promote-packages/
H A Dhelpers.ts18 changelog: Changelogs.loadFrom(pkg.changelogPath),
/expo/tools/src/
H A DPackages.ts181 get changelogPath(): string {
302 return fs.pathExists(this.changelogPath);
/expo/tools/src/publish-packages/tasks/
H A DcommentOnIssuesTask.ts197 const changelogRelativePath = path.relative(EXPO_DIR, pkg.changelogPath);
H A DloadRequestedParcels.ts135 const changelog = Changelogs.loadFrom(pkg.changelogPath);