sourcegraph / sourcegraph-extension-api

Sourcegraph extension API: use and build extensions that enhance reading and reviewing code in your existing tools. "The extension API you wish your code host had."
44 stars 2 forks source link

chore(deps): update dependency concurrently to v4 - autoclosed #32

Closed renovate[bot] closed 6 years ago

renovate[bot] commented 6 years ago

This Pull Request updates devDependency concurrently (source) from ^3.6.0 to ^4.0.0


Release Notes

v4.0.1

Compare Source

  • Make success condition respect exiting order (as per docs), instead of command spec order

v4.0.0

Compare Source

More than anything, v4 is just a big refactor to allow changes to be made faster and more reliably.
It does feature some small breaking changes, and maybe even fixes some longstanding bugs.

Breaking changes

  • The CLI option --allow-restarts is no more.
    Instead, just set --restart-tries to something greater than 0.
  • Input handling is now opt-in via --handle-input flag. (#​147)
    It does come with some specific input parsing that would make it difficult for you to use it.
  • Setting prefix to none will now actually not prefix commands' outputs.
    Previously, it would prefix with [].
  • SIGINTs/Ctrl+C will now be handled gracefully. (#​150)
    No more exiting with code 1 or tweaking --success flag.

No more null exit codes (#​133)

That's a pretty bad bug that existed till now. You won't see a log like this anymore:

[1] npm run lint-watch exited with code null

What you will see going forward is the actual exit signal:

[1] npm run lint-watch exited with code SIGTERM

concurrently finally gets a shiny ✨ programmatic API!

Closes #​101, #​112. Maybe even #​103.

const concurrently = require('concurrently');
await concurrently([
    'npm:watch-*',
    { name: 'server', command: 'nodemon' }
], {
  prefix: 'name',
  killOthers: ['failure'],
  restartTries: 3
});

Check the docs here for some info on how to use it.



This PR has been generated by Renovate Bot.

codecov[bot] commented 6 years ago

Codecov Report

Merging #32 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #32   +/-   ##
=======================================
  Coverage   75.14%   75.14%           
=======================================
  Files          93       93           
  Lines        3223     3223           
  Branches      588      588           
=======================================
  Hits         2422     2422           
  Misses        799      799           
  Partials        2        2

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 936264d...40e3600. Read the comment docs.

codecov[bot] commented 6 years ago

Codecov Report

Merging #32 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff           @@
##           master     #32   +/-   ##
======================================
  Coverage    75.1%   75.1%           
======================================
  Files          93      93           
  Lines        3225    3225           
  Branches      588     588           
======================================
  Hits         2422    2422           
  Misses        801     801           
  Partials        2       2

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 827345c...b7ca5f5. Read the comment docs.