{data.githubRepository.name}
92 |100 | 103 | {collaborator.name || collaborator.login} 104 | 105 |
106 | )) 107 | : '' 108 | } 109 | {data.githubRepository.additionalAuthors 110 | ? data.githubRepository.additionalAuthors.map((author: any) => ( 111 |112 | 113 | {author.name || author.link} 114 | 115 |
116 | )) 117 | : '' 118 | } 119 |126 | {data.githubRepository.homepageUrl} 129 |
130 |137 | {data.githubRepository.sourceUrl} 140 |
141 |153 | Release Type: {data.githubRepository.releases.edges[0].node.isPrerelease ? 'Pre-release' : 'Stable'} 154 |
155 |156 | {new Date(data.githubRepository.releases.edges[0].node.publishedAt).toLocaleString()} 157 |
158 |159 | View all releases 160 |
161 |174 | Release Type: {release.isPrerelease ? 'Pre-release' : 'Stable'} 175 |
176 |177 | {new Date(release.publishedAt).toLocaleString()} 178 |
179 | 185 | {release.releaseAssets?.edges.length 186 | ? ( 187 |