11 lines
347 B
TypeScript
11 lines
347 B
TypeScript
|
/**
|
||
|
* Configuration migrations module
|
||
|
*
|
||
|
* Exports the migration system for upgrading configs between versions.
|
||
|
*/
|
||
|
|
||
|
export { BaseMigration } from './base-migration.ts';
|
||
|
export { MigrationRunner } from './migration-runner.ts';
|
||
|
export { MigrationV1ToV2 } from './migration-v1-to-v2.ts';
|
||
|
export { MigrationV3ToV4 } from './migration-v3-to-v4.ts';
|