mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
Simplifying upgrade message format
- Remove 'to' particle from update messages - Adjusted spacing in version comparison output - Update tests to match the spacing Before: ▲ astro can be updated to v1.0.0 → v2.0.0 After: ▲ astro can be updated v1.0.0 → v2.0.0
This commit is contained in:
parent
2e71a3ec61
commit
da9b3b2b50
2 changed files with 6 additions and 6 deletions
|
@ -48,7 +48,7 @@ export async function install(
|
|||
const majors: PackageInfo[] = [];
|
||||
for (const packageInfo of toInstall) {
|
||||
const word = ctx.dryRun ? 'can' : 'will';
|
||||
await upgrade(packageInfo, `${word} be updated to`);
|
||||
await upgrade(packageInfo, `${word} be updated`);
|
||||
if (packageInfo.isMajor) {
|
||||
majors.push(packageInfo);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue