We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e2c4c6 commit 5d3469aCopy full SHA for 5d3469a
1 file changed
packages/cli/src/migration/report.ts
@@ -11,6 +11,7 @@ export interface MigrationReport {
11
prettierMigrated: boolean;
12
nodeVersionFileMigrated: boolean;
13
gitHooksConfigured: boolean;
14
+ frameworkShimAdded: boolean;
15
warnings: string[];
16
manualSteps: string[];
17
}
@@ -29,6 +30,7 @@ export function createMigrationReport(): MigrationReport {
29
30
prettierMigrated: false,
31
nodeVersionFileMigrated: false,
32
gitHooksConfigured: false,
33
+ frameworkShimAdded: false,
34
warnings: [],
35
manualSteps: [],
36
};
0 commit comments