12 lines
375 B
TypeScript
12 lines
375 B
TypeScript
import { VersionGraph } from '@start9labs/start-sdk'
|
|
import { v_1_0_1_0 } from './v1.0.1.0'
|
|
import { v_1_0_1_1 } from './v1.0.1.1'
|
|
import { v_1_0_2_0 } from './v1.0.2.0'
|
|
import { v_1_0_2_1 } from './v1.0.2.1'
|
|
import { v_1_0_3_0 } from './v1.0.3.0'
|
|
|
|
export const versionGraph = VersionGraph.of({
|
|
current: v_1_0_3_0,
|
|
other: [v_1_0_2_1, v_1_0_2_0, v_1_0_1_1, v_1_0_1_0],
|
|
})
|