15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
import { redirector } from '../index.js'
|
|
|
|
export default [
|
|
redirector({
|
|
category: 'version',
|
|
route: {
|
|
base: 'jitpack/v',
|
|
pattern: ':groupId/:artifactId',
|
|
},
|
|
transformPath: ({ groupId, artifactId }) =>
|
|
`/jitpack/v/github/${groupId}/${artifactId}`,
|
|
dateAdded: new Date('2019-03-31'),
|
|
}),
|
|
]
|