({ wheel })
| 58 | } |
| 59 | |
| 60 | async fetch({ wheel }) { |
| 61 | return this._requestJson({ |
| 62 | schema, |
| 63 | url: `https://www.piwheels.org/project/${wheel}/json/`, |
| 64 | httpErrors: { 404: 'package not found' }, |
| 65 | }) |
| 66 | } |
| 67 | |
| 68 | static transform(releases, includePrereleases) { |
| 69 | const allReleases = Object.keys(releases) |