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

Update qa automation project creation process #25

Open
OrandiH opened this issue Dec 30, 2022 · 1 comment
Open

Update qa automation project creation process #25

OrandiH opened this issue Dec 30, 2022 · 1 comment
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@OrandiH
Copy link

OrandiH commented Dec 30, 2022

Add a spinner to the project creation process so that when a user executes the command to create-project (for web or mobile), they get prompted that the npm installation process is happening or has finished. See link here -> https://github.com/sindresorhus/ora

Screen Shot 2022-12-30 at 4 08 11 PM

@OrandiH OrandiH changed the title Update project creation process Update qa automation project creation process Dec 30, 2022
@OrandiH OrandiH added enhancement New feature or request good first issue Good for newcomers labels Dec 30, 2022
@OrandiH
Copy link
Author

OrandiH commented Dec 30, 2022

Here is a code snippet example of using the cli spinner library ora.

import ora from 'ora';

const spinner = ora('Installing dependencies!');

spinner.color = 'yellow';
spinner.spinner = 'bouncingBall'

spinner.start();


setTimeout(() => {
	
    spinner.succeed('Finished!');
}, 1000);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant