Skip to content

Commit

Permalink
fix(core): fix wrong create-nx-workspace tutorial link (#6428)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Jul 22, 2021
1 parent 91cfe5d commit 9326742
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/create-nx-workspace/bin/create-nx-workspace.ts
Expand Up @@ -173,17 +173,17 @@ function showHelp() {
preset What to create in a new workspace (options: ${options})
appName The name of the application created by some presets
appName The name of the application created by some presets
cli CLI to power the Nx workspace (options: "nx", "angular")
style Default style option to be used when a non-empty preset is selected
options: ("css", "scss", "less") plus ("styl") for all non-Angular and ("styled-components", "@emotion/styled", "styled-jsx") for React, Next.js, Gatsby
interactive Enable interactive mode when using presets (boolean)
packageManager Package manager to use (npm, yarn, pnpm)
nx-cloud Use Nx Cloud (boolean)
[new workspace options] any 'new workspace' options
Expand Down Expand Up @@ -581,7 +581,7 @@ function pointToTutorialAndCourse(preset: Preset) {
output.note({
title,
bodyLines: [
`https://nx.dev/react/tutorial/01-create-application`,
`https://nx.dev/latest/react/tutorial/01-create-application`,
...pointToFreeCourseOnEgghead(),
],
});
Expand All @@ -592,7 +592,7 @@ function pointToTutorialAndCourse(preset: Preset) {
output.note({
title,
bodyLines: [
`https://nx.dev/angular/tutorial/01-create-application`,
`https://nx.dev/latest/angular/tutorial/01-create-application`,
...pointToFreeCourseOnYoutube(),
],
});
Expand All @@ -602,7 +602,7 @@ function pointToTutorialAndCourse(preset: Preset) {
output.note({
title,
bodyLines: [
`https://nx.dev/node/tutorial/01-create-application`,
`https://nx.dev/latest/node/tutorial/01-create-application`,
...pointToFreeCourseOnYoutube(),
],
});
Expand Down

0 comments on commit 9326742

Please sign in to comment.