We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc64373 commit e5170b9Copy full SHA for e5170b9
1 file changed
lib/commands/migrate.js
@@ -178,9 +178,15 @@ function runMigration(currentConfigPath, outputConfigPath) {
178
);
179
}
180
181
+ console.log(chalk.green(`\n✔︎ New webpack config file is at ${outputConfigPath}.`));
182
console.log(
183
chalk.green(
- `\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."
190
)
191
192
});
0 commit comments