Files
KamadoPool-StartOS-040/startos/versions/index.ts
T

12 lines
394 B
TypeScript

import { VersionGraph } from '@start9labs/start-sdk'
import { v0_2_0 } from './v0_2_0'
import { v0_2_1 } from './v0_2_1'
// The current version must be listed first; `other` carries the rest of the
// graph so StartOS can find a migration path from whatever version an existing
// install is currently on.
export const versionGraph = VersionGraph.of({
current: v0_2_1,
other: [v0_2_0],
})