13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
import { VersionGraph } from '@start9labs/start-sdk'
|
|
import { v0_2_0 } from './v0_2_0'
|
|
import { v0_2_1 } from './v0_2_1'
|
|
import { v0_2_2 } from './v0_2_2'
|
|
|
|
// 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_2,
|
|
other: [v0_2_0, v0_2_1],
|
|
})
|