Skip to content

Commit

Permalink
cli(fix): remove reference to specific version during migration (#410)
Browse files Browse the repository at this point in the history
* fix: remove reference to specific version during migration

* fix: rephrase update message
  • Loading branch information
matheus1lva authored and ematipico committed Apr 21, 2018
1 parent cc64373 commit e5170b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/commands/migrate.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,15 @@ function runMigration(currentConfigPath, outputConfigPath) {
);
}
}
console.log(chalk.green(`\n✔︎ New webpack config file is at ${outputConfigPath}.`));
console.log(
chalk.green(
`\n ✔︎ New webpack v2 config file is at ${outputConfigPath}`
"✔︎ Heads up! Updating to the latest version could contain breaking changes."
)
);
console.log(
chalk.green(
"✔︎ Plugin and loader dependencies may need to be updated."
)
);
});
Expand Down

0 comments on commit e5170b9

Please sign in to comment.