Skip to content

Commit e5170b9

Browse files
matheus1lvaematipico
authored andcommitted
cli(fix): remove reference to specific version during migration (#410)
* fix: remove reference to specific version during migration * fix: rephrase update message
1 parent cc64373 commit e5170b9

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

lib/commands/migrate.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,15 @@ function runMigration(currentConfigPath, outputConfigPath) {
178178
);
179179
}
180180
}
181+
console.log(chalk.green(`\n✔︎ New webpack config file is at ${outputConfigPath}.`));
181182
console.log(
182183
chalk.green(
183-
`\n ✔︎ New webpack v2 config file is at ${outputConfigPath}`
184+
"✔︎ Heads up! Updating to the latest version could contain breaking changes."
185+
)
186+
);
187+
console.log(
188+
chalk.green(
189+
"✔︎ Plugin and loader dependencies may need to be updated."
184190
)
185191
);
186192
});

0 commit comments

Comments
 (0)