Skip to content

Commit 5d3469a

Browse files
committed
feat(report): add frameworkShimAdded field to MigrationReport
1 parent 2e2c4c6 commit 5d3469a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/cli/src/migration/report.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export interface MigrationReport {
1111
prettierMigrated: boolean;
1212
nodeVersionFileMigrated: boolean;
1313
gitHooksConfigured: boolean;
14+
frameworkShimAdded: boolean;
1415
warnings: string[];
1516
manualSteps: string[];
1617
}
@@ -29,6 +30,7 @@ export function createMigrationReport(): MigrationReport {
2930
prettierMigrated: false,
3031
nodeVersionFileMigrated: false,
3132
gitHooksConfigured: false,
33+
frameworkShimAdded: false,
3234
warnings: [],
3335
manualSteps: [],
3436
};

0 commit comments

Comments
 (0)