Skip to content

Commit 81e261f

Browse files
matheus1lvaevenstensberg
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 d28484c commit 81e261f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/commands/migrate.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,15 @@ module.exports = function migrate(
137137
);
138138
}
139139
}
140+
console.log(chalk.green(`\n✔︎ New webpack config file is at ${outputConfigPath}.`));
140141
console.log(
141142
chalk.green(
142-
`\n ✔︎ New webpack v2 config file is at ${outputConfigPath}`
143+
"✔︎ Heads up! Updating to the latest version could contain breaking changes."
144+
)
145+
);
146+
console.log(
147+
chalk.green(
148+
"✔︎ Plugin and loader dependencies may need to be updated."
143149
)
144150
);
145151
});

0 commit comments

Comments
 (0)