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

fix(suggestion): prefixColors API type to embrace string type #439

Merged
merged 2 commits into from Sep 23, 2023

Conversation

SeiwonPark
Copy link
Contributor

@SeiwonPark SeiwonPark commented Sep 7, 2023

Purpose of this PR

Regarding prefixColors's default value, and the issue #437, though the document specified as below,

a list of colors as supported by chalk or auto for an automatically picked color.

still the behavior for using API doesn't look quite neat. Here's an example:

example

// referred code from README

const concurrently = require('concurrently');
const { result } = concurrently(
  [
    'npm:watch-*',
    { command: 'nodemon', name: 'server' },
    { command: 'deploy', name: 'deploy', env: { PUBLIC_KEY: '...' } },
    {
      command: 'watch',
      name: 'watch',
      cwd: path.resolve(__dirname, 'scripts/watchers'),
    },
  ],
  {
    prefix: 'name',
    killOthers: ['failure', 'success'],
    restartTries: 3,
    cwd: path.resolve(__dirname, 'scripts'),
    prefixColors: ['auto'],     //  <--------- To use 'auto' option, it needs to be wrapped in a list
  },
);
result.then(success, failure);

and as the option is prefixColor"s", it makes sense.

But it's literally an auto so rather than wrapping it in a list,

prefixColors: 'auto' // or 'bgMagenta', 'red', 'underline', ... for other available styles

just give it a string like above might not hurt the philosophy of prefixColors's default value.

So it might be another handy option for users I guess. Or how do you think about this?


What's been updated

So I'm suggesting the string type to be able to embrace all the behaviors from users.

// src/concurrently.ts

- prefixColors?: string[];
+ prefixColors?: string | string[];

concurrently

and updated document for more details.

@coveralls
Copy link

Coverage Status

coverage: 99.197% (-0.1%) from 99.31% when pulling 1add5d6 on SeiwonPark:fix/prefix-api-type into 1618208 on open-cli-tools:main.

Copy link
Member

@gustavohenke gustavohenke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, LGTM.

Copy link
Collaborator

@paescuj paescuj left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@paescuj paescuj merged commit 81529a9 into open-cli-tools:main Sep 23, 2023
27 checks passed
@SeiwonPark SeiwonPark deleted the fix/prefix-api-type branch September 24, 2023 12:08
diegohaz pushed a commit to ariakit/ariakit that referenced this pull request Oct 19, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`8.2.1` ->
`8.2.2`](https://renovatebot.com/diffs/npm/concurrently/8.2.1/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/ariakit/ariakit).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xOS4yIiwidXBkYXRlZEluVmVyIjoiMzcuMTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to Unleash/unleash that referenced this pull request Oct 30, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`8.2.1` ->
`8.2.2`](https://renovatebot.com/diffs/npm/concurrently/8.2.1/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
sawyerh pushed a commit to sawyerh/highlights that referenced this pull request Nov 1, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/jest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`29.5.5` ->
`29.5.6`](https://renovatebot.com/diffs/npm/@types%2fjest/29.5.5/29.5.6)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fjest/29.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fjest/29.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fjest/29.5.5/29.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fjest/29.5.5/29.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`18.18.0` ->
`18.18.7`](https://renovatebot.com/diffs/npm/@types%2fnode/18.18.0/18.18.7)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.18.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.18.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.18.0/18.18.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.18.0/18.18.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node-fetch](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-fetch)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`2.6.6` ->
`2.6.7`](https://renovatebot.com/diffs/npm/@types%2fnode-fetch/2.6.6/2.6.7)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode-fetch/2.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode-fetch/2.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode-fetch/2.6.6/2.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode-fetch/2.6.6/2.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/supertest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/supertest)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`2.0.13` ->
`2.0.15`](https://renovatebot.com/diffs/npm/@types%2fsupertest/2.0.13/2.0.15)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fsupertest/2.0.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fsupertest/2.0.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fsupertest/2.0.13/2.0.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fsupertest/2.0.13/2.0.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`8.2.1` ->
`8.2.2`](https://renovatebot.com/diffs/npm/concurrently/8.2.1/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [firebase-admin](https://firebase.google.com/)
([source](https://togithub.com/firebase/firebase-admin-node)) |
[`11.10.1` ->
`11.11.0`](https://renovatebot.com/diffs/npm/firebase-admin/11.10.1/11.11.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/firebase-admin/11.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/firebase-admin/11.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/firebase-admin/11.10.1/11.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/firebase-admin/11.10.1/11.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

</details>

<details>
<summary>firebase/firebase-admin-node (firebase-admin)</summary>

###
[`v11.11.0`](https://togithub.com/firebase/firebase-admin-node/releases/tag/v11.11.0):
Firebase Admin Node.js SDK v11.11.0

[Compare
Source](https://togithub.com/firebase/firebase-admin-node/compare/v11.10.1...v11.11.0)

##### New Features

- feat(auth): Add Email Privacy support in Project and Tenant config
([#&#8203;2198](https://togithub.com/firebase/firebase-admin-node/issues/2198))

##### Miscellaneous

- \[chore] Release 11.11.0
([#&#8203;2315](https://togithub.com/firebase/firebase-admin-node/issues/2315))
- build(deps-dev): bump
[@&#8203;types/lodash](https://togithub.com/types/lodash) from 4.14.197
to 4.14.199
([#&#8203;2309](https://togithub.com/firebase/firebase-admin-node/issues/2309))
- build(deps-dev): bump eslint from 8.47.0 to 8.50.0
([#&#8203;2311](https://togithub.com/firebase/firebase-admin-node/issues/2311))
- Update `github.ref` value in `release.yml`
([#&#8203;2313](https://togithub.com/firebase/firebase-admin-node/issues/2313))
- build(deps-dev): bump nock from 13.3.2 to 13.3.3
([#&#8203;2288](https://togithub.com/firebase/firebase-admin-node/issues/2288))
- build(deps-dev): bump bcrypt from 5.1.0 to 5.1.1
([#&#8203;2289](https://togithub.com/firebase/firebase-admin-node/issues/2289))
- build(deps-dev): bump eslint from 8.43.0 to 8.47.0
([#&#8203;2279](https://togithub.com/firebase/firebase-admin-node/issues/2279))
- build(deps-dev): bump
[@&#8203;types/lodash](https://togithub.com/types/lodash) from 4.14.195
to 4.14.197
([#&#8203;2280](https://togithub.com/firebase/firebase-admin-node/issues/2280))
- build(deps-dev): bump
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
([#&#8203;2282](https://togithub.com/firebase/firebase-admin-node/issues/2282))
- build(deps-dev): bump nock from 13.3.1 to 13.3.2
([#&#8203;2270](https://togithub.com/firebase/firebase-admin-node/issues/2270))
- build(deps-dev): bump
[@&#8203;firebase/auth-compat](https://togithub.com/firebase/auth-compat)
from 0.4.3 to 0.4.4
([#&#8203;2273](https://togithub.com/firebase/firebase-admin-node/issues/2273))
- build(deps-dev): bump
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
from 5.59.9 to 5.62.0
([#&#8203;2264](https://togithub.com/firebase/firebase-admin-node/issues/2264))
- build(deps): bump
[@&#8203;google-cloud/firestore](https://togithub.com/google-cloud/firestore)
from 6.6.1 to 6.7.0
([#&#8203;2265](https://togithub.com/firebase/firebase-admin-node/issues/2265))
- build(deps-dev): bump
[@&#8203;types/uuid](https://togithub.com/types/uuid) from 9.0.1 to
9.0.2
([#&#8203;2267](https://togithub.com/firebase/firebase-admin-node/issues/2267))
- build(deps-dev): bump
[@&#8203;firebase/app-compat](https://togithub.com/firebase/app-compat)
from 0.2.13 to 0.2.15
([#&#8203;2263](https://togithub.com/firebase/firebase-admin-node/issues/2263))
- build(deps): bump
[@&#8203;google-cloud/storage](https://togithub.com/google-cloud/storage)
from 6.11.0 to 6.12.0
([#&#8203;2253](https://togithub.com/firebase/firebase-admin-node/issues/2253))
- build(deps-dev): bump
[@&#8203;microsoft/api-extractor](https://togithub.com/microsoft/api-extractor)
from 7.36.1 to 7.36.3
([#&#8203;2261](https://togithub.com/firebase/firebase-admin-node/issues/2261))
- build(deps): bump word-wrap from 1.2.3 to 1.2.4
([#&#8203;2256](https://togithub.com/firebase/firebase-admin-node/issues/2256))
- build(deps): bump
[@&#8203;types/node](https://togithub.com/types/node) from 20.3.2 to
20.4.2
([#&#8203;2255](https://togithub.com/firebase/firebase-admin-node/issues/2255))
- build(deps-dev): bump
[@&#8203;firebase/auth-compat](https://togithub.com/firebase/auth-compat)
from 0.4.2 to 0.4.3
([#&#8203;2252](https://togithub.com/firebase/firebase-admin-node/issues/2252))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the
month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/sawyerh/highlights).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to redwoodjs/redwood that referenced this pull request Nov 1, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`8.2.1` ->
`8.2.2`](https://renovatebot.com/diffs/npm/concurrently/8.2.1/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jtoar pushed a commit to redwoodjs/redwood that referenced this pull request Nov 2, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`8.2.1` ->
`8.2.2`](https://renovatebot.com/diffs/npm/concurrently/8.2.1/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
tylersmalley pushed a commit to tailscale-dev/vscode-tailscale that referenced this pull request Nov 4, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`^8.2.1` ->
`^8.2.2`](https://renovatebot.com/diffs/npm/concurrently/8.2.1/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 8am on monday" in timezone
America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/tailscale-dev/vscode-tailscale).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xOS4yIiwidXBkYXRlZEluVmVyIjoiMzcuMTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Kit-p added a commit to Kit-p/json-kit that referenced this pull request Dec 5, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`8.2.1` ->
`8.2.2`](https://renovatebot.com/diffs/npm/concurrently/8.2.1/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/8.2.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the
month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Kit-p/json-kit).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
xddq pushed a commit to xddq/nodejs-typescript-modern-starter that referenced this pull request Jan 26, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [concurrently](https://togithub.com/open-cli-tools/concurrently) |
[`7.6.0` ->
`8.2.2`](https://renovatebot.com/diffs/npm/concurrently/7.6.0/8.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/concurrently/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/concurrently/7.6.0/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/concurrently/7.6.0/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-cli-tools/concurrently (concurrently)</summary>

###
[`v8.2.2`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.2)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.1...v8.2.2)

#### What's Changed

- fix(suggestion): prefixColors API type to embrace string type by
[@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) in
[open-cli-tools/concurrently#439
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#441
- Test against Node.js v20 instead of v19 by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#442
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#449

#### New Contributors

- [@&#8203;SeiwonPark](https://togithub.com/SeiwonPark) made their first
contribution in
[open-cli-tools/concurrently#439

**Full Changelog**:
open-cli-tools/concurrently@v8.2.1...v8.2.2

###
[`v8.2.1`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.1)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.2.0...v8.2.1)

#### What's Changed

- Delay summary timings output until finished by
[@&#8203;kayahr](https://togithub.com/kayahr) in
[open-cli-tools/concurrently#431
- Replace deprecated RxJS code by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#343

#### New Contributors

- [@&#8203;kayahr](https://togithub.com/kayahr) made their first
contribution in
[open-cli-tools/concurrently#431

**Full Changelog**:
open-cli-tools/concurrently@v8.2.0...v8.2.1

###
[`v8.2.0`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.2.0)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.1.0...v8.2.0)

#### What's Changed

- Support REPL languages that use colons by
[@&#8203;wyattades](https://togithub.com/wyattades) in
[open-cli-tools/concurrently#393
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#427

#### New Contributors

- [@&#8203;wyattades](https://togithub.com/wyattades) made their first
contribution in
[open-cli-tools/concurrently#393

**Full Changelog**:
open-cli-tools/concurrently@v8.1.0...v8.2.0

###
[`v8.1.0`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.1.0)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.0.1...v8.1.0)

#### What's Changed

- fix: move `types` condition to the front by
[@&#8203;Andarist](https://togithub.com/Andarist) in
[open-cli-tools/concurrently#422
- Allow setting `raw` per command when using the API by
[@&#8203;chbiel](https://togithub.com/chbiel) in
[open-cli-tools/concurrently#411

#### New Contributors

- [@&#8203;Andarist](https://togithub.com/Andarist) made their first
contribution in
[open-cli-tools/concurrently#422
- [@&#8203;chbiel](https://togithub.com/chbiel) made their first
contribution in
[open-cli-tools/concurrently#411

**Full Changelog**:
open-cli-tools/concurrently@v8.0.1...v8.1.0

###
[`v8.0.1`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.0.1)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v8.0.0...v8.0.1)

#### What's Changed

- Fix release workflow by
[@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#408
- Update dependencies by [@&#8203;paescuj](https://togithub.com/paescuj)
in
[open-cli-tools/concurrently#409

**Full Changelog**:
open-cli-tools/concurrently@v8.0.0...v8.0.1

###
[`v8.0.0`](https://togithub.com/open-cli-tools/concurrently/releases/tag/v8.0.0)

[Compare
Source](https://togithub.com/open-cli-tools/concurrently/compare/v7.6.0...v8.0.0)

#### What's Changed

- **Breaking change:** Drop support for Node.js v12 & add support for
Node.js v18 by [@&#8203;paescuj](https://togithub.com/paescuj) in
[open-cli-tools/concurrently#342
- Add support for Bun by
[@&#8203;jakeboone02](https://togithub.com/jakeboone02) in
[open-cli-tools/concurrently#406
- Add `--kill-signal` option by
[@&#8203;paulsmithkc](https://togithub.com/paulsmithkc) in
[open-cli-tools/concurrently#402
- Fixed broken link in the readme by
[@&#8203;abstractpoint](https://togithub.com/abstractpoint) in
[open-cli-tools/concurrently#390

#### New Contributors

- [@&#8203;abstractpoint](https://togithub.com/abstractpoint) made their
first contribution in
[open-cli-tools/concurrently#390
- [@&#8203;jakeboone02](https://togithub.com/jakeboone02) made their
first contribution in
[open-cli-tools/concurrently#406
- [@&#8203;paulsmithkc](https://togithub.com/paulsmithkc) made their
first contribution in
[open-cli-tools/concurrently#402

**Full Changelog**:
open-cli-tools/concurrently@v7.6.0...v8.0.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/xddq/nodejs-typescript-modern-starter).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants