We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I got strange dublication in the CLI log and locally with disableSpins option:
disableSpins
- Downloading https://github.com/logux/logux/archive/master.zip - Downloading https://github.com/logux/logux/archive/master.zip - Downloading https://github.com/logux/core/archive/master.zip - Downloading https://github.com/logux/logux/archive/master.zip - Downloading https://github.com/logux/core/archive/master.zip - Downloading https://github.com/logux/server/archive/master.zip - logux downloaded - Downloading https://github.com/logux/core/archive/master.zip - Downloading https://github.com/logux/server/archive/master.zip - logux downloaded - logux-core downloaded - Downloading https://github.com/logux/server/archive/master.zip - logux downloaded - logux-core downloaded - logux-server downloaded - logux downloaded - logux-core downloaded - logux-server downloaded - Converting guides - logux downloaded - logux-core downloaded - logux-server downloaded - Converting guides - Generating JSDoc - logux downloaded - logux-core downloaded - logux-server downloaded - Guide converted - Generating JSDoc - logux downloaded - logux-core downloaded - logux-server downloaded - Guide converted - JSDoc generated - logux downloaded - logux-core downloaded - logux-server downloaded - Guide converted - JSDoc generated - Building guides HTML - logux downloaded - logux-core downloaded - logux-server downloaded - Guide converted - JSDoc generated - Building guides HTML - Building API HTML - logux downloaded - logux-core downloaded - logux-server downloaded - Guide converted - JSDoc generated - Building guides HTML - API HTML generated - logux downloaded - logux-core downloaded - logux-server downloaded - Guide converted - JSDoc generated - Guides HTML generated - API HTML generated
But with spinners (locally without disableSpins) everything works good.
I strarted this spinners only (pseudocode):
await Promise.all(projects.map(async ([url, name]) => { spin.add(`download-${ name }`, { text: `Downloading ${ url }` }) await donwload(name, url) spin.succeed(`download-${ name }`, { text: `${ name } downloaded` }) }) Promise.all([ async () => { spin.add('process-guides', { text: 'Converting guides' }) await process() spin.succeed('process-guides', { text: 'Guide converted' }) }), async () => { spin.add(`jsdoc${ projects.join() }`, { text: 'Generating JSDoc' }) await jsdoc() spin.succeed(`jsdoc${ projects.join() }`, { text: 'JSDoc generated' }) }) ]) Promise.all([ async () => { spin.add('build-api', { text: 'Building API HTML' }) await buildHTML('guide') spin.succeed('build-api', { text: 'API HTML generated' }) }), async () => { spin.add('build-pages', { text: 'Building guides HTML' }) await buildHTML('api') spin.succeed('build-pages', { text: 'Guides HTML generated' }) }) ])
Could be an dublicate for #13
The text was updated successfully, but these errors were encountered:
usually CI logs are not ncurse capable. therefore i guess spinners just adds lines to the log instead of rewriting current lines.
Sorry, something went wrong.
No branches or pull requests
I got strange dublication in the CLI log and locally with
disableSpins
option:But with spinners (locally without
disableSpins
) everything works good.I strarted this spinners only (pseudocode):
Could be an dublicate for #13
The text was updated successfully, but these errors were encountered: