Merge pull request #20708 from adamdmharvey/adamdmharvey/fix-install-msg

fix(create-app): Logic bug about suggesting Yarn install
This commit is contained in:
Patrik Oldsberg
2023-10-20 17:48:33 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
If create app installs dependencies, don't suggest to user that they also need to do it.
+1 -1
View File
@@ -129,7 +129,7 @@ export default async (opts: OptionValues): Promise<void> => {
);
Task.log();
Task.section('All set! Now you might want to');
if (!opts.skipInstall) {
if (opts.skipInstall) {
Task.log(
` Install the dependencies: ${chalk.cyan(
`cd ${opts.path ?? answers.name} && yarn install`,