chore(core): add free video course note for create-nx-workspace

This commit is contained in:
ben 2020-01-14 09:52:43 -05:00 committed by Victor Savkin
parent 79a5c535a2
commit df72d317b4

View File

@ -82,6 +82,7 @@ determineWorkspaceName(parsedArgs).then(name => {
showCliWarning(preset, parsedArgs);
showNxWarning(name);
pointToTutorial(preset);
pointToCourse();
});
});
});
@ -507,3 +508,13 @@ function pointToTutorial(preset: Preset) {
break;
}
}
function pointToCourse(): void {
output.addVerticalSeparator();
output.note({
title: `Prefer watching videos? We made en entire course for Nx available on YouTube.`,
bodyLines: [
`https://www.youtube.com/watch?v=2mYLe9Kp9VM&list=PLakNactNC1dH38AfqmwabvOszDmKriGco`
]
});
}