Skip to content

Commit f216d6a

Browse files
committed
Change npm start to yarn start
1 parent 4312c09 commit f216d6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/commands/generator/setup-workspace/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ class Generator extends Base {
293293
this.log(chalk.green(`${stepCounter++}. Open IDE (PyCharm or Visual Studio Code, Atom) and select:`), this.destinationPath(this.cwd));
294294
this.log(chalk.green(' In case of Visual Studio Code, the following should also work: '), chalk.yellow('code .'));
295295
this.log(chalk.green(`${stepCounter++}. Start server docker container in the background (-d): `), chalk.yellow('docker compose up -d'));
296-
this.log(chalk.green(`${stepCounter++}. Start client application in the foreground: `), chalk.yellow('npm start'));
296+
this.log(chalk.green(`${stepCounter++}. Start client application in the foreground: `), chalk.yellow('yarn start'));
297297
this.log(chalk.green(`${stepCounter++}. Open web browser and navigate to`), chalk.yellow('http://localhost:8080'));
298298

299299
this.log('\n\nUseful commands: ');

bin/commands/generator/workspace/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class Generator extends BasePhoveaGenerator {
117117
{
118118
type: 'list',
119119
name: 'defaultApp',
120-
message: 'Default application to launch using `npm start`?',
120+
message: 'Default application to launch using `yarn start`?',
121121
choices: apps,
122122
default: apps[0],
123123
when: apps.length > 1 && !this.props.defaultApp,

0 commit comments

Comments
 (0)