Skip to content

Commit a59c2f0

Browse files
Merge pull request #1697 from contentstack/DX-648
DX-648, updated the warning message
2 parents 03c528e + 697a6fe commit a59c2f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/contentstack/src/hooks/prerun/latest-version-warning.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default async function (_opts): Promise<void> {
4848
// Show warning if an update is available and last warning was yesterday
4949
if (semver.gt(cache.latestVersion, this.config.version) && cache.lastWarnedDate !== today) {
5050
cliux.print(
51-
`You are using version ${this.config.version}, but the latest version is ${cache.latestVersion}. Please update your CLI for the best experience.`,
51+
`You are not using the most recent CLI release. Please update to the latest version for an improved experience.`,
5252
{ color: 'yellow' },
5353
);
5454
// Update the last warned timestamp

0 commit comments

Comments
 (0)