We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be18d14 commit 9ed9bc2Copy full SHA for 9ed9bc2
packages/qwik/src/cli/migrate-v2/run-migration.ts
@@ -8,7 +8,6 @@ import {
8
removeTsMorphFromPackageJson,
9
updateDependencies,
10
} from './update-dependencies';
11
-import { updateConfigurations } from './update-configurations';
12
13
export async function runV2Migration(app: AppCommand) {
14
intro(
@@ -56,7 +55,8 @@ export async function runV2Migration(app: AppCommand) {
56
55
await removeTsMorphFromPackageJson();
57
}
58
59
- updateConfigurations();
+ // COMMENTED OUT FOR NOW 👇 (as this is fixed in https://github.com/QwikDev/qwik/pull/7159)
+ // updateConfigurations();
60
61
await updateDependencies();
62
log.success(`${green(`Your application has been successfully migrated to v2!`)}`);
0 commit comments