Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor updates to upgrade messages #25207

Merged
merged 1 commit into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const minimumNodeVersion = packageJson.engines.node;

if (!process.argv.includes('--skip-checks') && !semver.satisfies(currentNodeVersion, minimumNodeVersion)) {
logger.fatal(
`You are running Node version ${currentNodeVersion}\nJHipster requires Node version ${minimumNodeVersion}\nPlease update your version of Node.`,
`You are running Node version ${currentNodeVersion}.\nJHipster requires Node version ${minimumNodeVersion}.\nPlease update your version of Node.`,
);
}

Expand Down
4 changes: 2 additions & 2 deletions generators/upgrade/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# upgrade sub-generador

Upgrades the application the a newer generator-jhipster version.
Upgrades the application to a newer generator-jhipster version.

The upgrade process generates 4 commits.
The upgrade process generates 4 commits:

- the reference application
- a merge commit with unrelated histories
Expand Down
2 changes: 1 addition & 1 deletion generators/upgrade/USAGE
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Example:

jhipster upgrade

Assuming you have Git installed, and you run this command in the Git branch you are using for development, JHipster Upgrader will :
Assuming you have Git installed, and you run this command in the Git branch you are using for development, it will:
- checkout a "jhipster_upgrade" branch
- generate a application upgrade reference
- apply the reference point to your application
Expand Down