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

Bump the patch-and-minor-dependencies group across 1 directory with 17 updates #743

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

Bumps the patch-and-minor-dependencies group with 17 updates in the / directory:

Package From To
@types/node 22.13.4 22.13.8
@vitest/coverage-v8 3.0.5 3.0.7
eslint-config-prettier 10.0.1 10.0.2
msw 2.7.0 2.7.3
npm-check-updates 17.1.14 17.1.15
prettier 3.5.1 3.5.3
stylelint 16.14.1 16.15.0
typescript 5.7.3 5.8.2
vitest 3.0.5 3.0.7
react-markdown 10.0.0 10.0.1
keycloak-js 26.1.2 26.1.3
ra-data-simple-rest 5.5.3 5.6.2
ra-i18n-polyglot 5.5.3 5.6.2
react-admin 5.5.3 5.6.2
vite 6.1.0 6.2.0
ra-core 5.5.3 5.6.2
eslint-config-next 15.1.7 15.2.0

Updates @types/node from 22.13.4 to 22.13.8

Commits

Updates @vitest/coverage-v8 from 3.0.5 to 3.0.7

Release notes

Sourced from @​vitest/coverage-v8's releases.

v3.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.0.6

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates eslint-config-prettier from 10.0.1 to 10.0.2

Release notes

Sourced from eslint-config-prettier's releases.

v10.0.2

Patch Changes

Changelog

Sourced from eslint-config-prettier's changelog.

10.0.2

Patch Changes

10.0.0

Major Changes

Versions before 10.0.0

Version 9.1.0 (2023-12-02)

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.

Version 9.0.0 (2023-08-05)

  • Added: The CLI helper tool now works with eslint.config.js (flat config). Just like ESLint itself, the CLI tool automatically first tries eslint.config.js and then eslintrc, and you can force which one to use by setting the [ESLINT_USE_FLAT_CONFIG] environment variable. Note that the config of eslint-config-prettier has always been compatible with eslint.config.js (flat config) – it was just the CLI tool that needed updating. On top of that, the docs have been updated to mention how to use both eslint.config.js (flat config) and eslintrc, and the tests now test both config systems.
  • Changed: [unicode-bom] is no longer turned off. Prettier preserves the BOM if you have one, and does not add one if missing. It was wrong of eslint-config-prettier to disable that rule. If you get ESLint errors after upgrading, either add "unicode-bom": "off" to your config to disable it again, or run ESLint with --fix to fix all files according to the rule (add or remove BOM). Thanks to Nicolas Stepien (@​nstepien)!

Version 8.10.0 (2023-08-03)

  • Added: [max-statements-per-line]. Thanks to @​Zamiell!

Version 8.9.0 (2023-07-27)

  • Added: [vue/array-element-newline]. Thanks to @​xcatliu!

Version 8.8.0 (2023-03-20)

  • Added: [@​typescript-eslint/lines-around-comment]. Thanks to @​ttionya!

Version 8.7.0 (2023-03-06)

  • Added: [@​typescript-eslint/block-spacing]. Thanks to @​ttionya!
  • Added: [@​typescript-eslint/key-spacing]. Thanks to @​ttionya!

Version 8.6.0 (2023-01-02)

  • Added: [vue/multiline-ternary]. Thanks to @​xcatliu!

Version 8.5.0 (2022-03-02)

  • Added: [@​typescript-eslint/space-before-blocks]. Thanks to Masafumi Koba (@​ybiquitous)!

Version 8.4.0 (2022-02-19)

... (truncated)

Commits

Updates msw from 2.7.0 to 2.7.3

Release notes

Sourced from msw's releases.

v2.7.3 (2025-02-24)

Bug Fixes

  • do not treat static asset requests as unhandled by default (#2440, docs) (eb45e7a93e2e4525c955ff0df1ec149c6b9de70e) @​kettanaito

v2.7.2 (2025-02-24)

Bug Fixes

  • HttpResponse: set the default bodyType to any (#2439) (bb1faf80645c551053e773382d9b56775f8bb580) @​kettanaito

v2.7.1 (2025-02-20)

Bug Fixes

  • HttpResponse: support non-configurable status codes (#2434) (0cf639e9c12b25093fe8aa0cce865168ea7db978) @​kettanaito
Commits

Updates npm-check-updates from 17.1.14 to 17.1.15

Commits

Updates prettier from 3.5.1 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

Commits

Updates stylelint from 16.14.1 to 16.15.0

Release notes

Sourced from stylelint's releases.

16.15.0

  • Added: syntax-string-no-invalid rule (#8331) (@​ryo-manba).
  • Added: languageOptions configuration property (#8297) (@​ryo-manba).
  • Added: regex support to ignoreAtRules option of at-rule-empty-line-before (#8385) (@​ryo-manba).
  • Added: alpha-value-notation support for computing EditInfo (#8369) (@​pamelalozano16).
  • Added: color-hex-length support for computing EditInfo (#8415) (@​ryo-manba).
  • Added: comment-empty-line-before support for computing EditInfo (#8416) (@​ryo-manba).
  • Added: comment-whitespace-inside support for computing EditInfo (#8417) (@​ryo-manba).
  • Added: custom-property-empty-line-before support for computing EditInfo (#8418) (@​ryo-manba).
  • Added: declaration-block-no-duplicate-properties support for computing EditInfo (#8363) (@​romainmenke).
  • Fixed: tap formatter not escaping # and \ in its test point descriptions (#8334) (@​Mouvedia).
  • Fixed: tap formatter outputting invalid YAML blocks for rules containing double quotes in their warnings' messages (#8334) (@​Mouvedia).
  • Fixed: declaration-block-no-redundant-longhand-properties false positives for properties with !important (#8366) (@​immitsu).
  • Fixed: EditInfo missing semicolon in text field (#8370) (@​pamelalozano16).
  • Fixed: declaration-property-value-keyword-no-deprecated false negatives for text-decoration: blink (#8351) (@​Mouvedia).
  • Fixed: declaration-property-value-keyword-no-deprecated false positives for styled components interpolated functions (#8392) (@​Mouvedia).
  • Fixed: font-family-name-quotes false positives due to vendor-prefixed font-size values (#8393) (@​Mouvedia).
  • Fixed: font-family-no-missing-generic-family-keyword false positives for math, emoji and fangsong (#8395) (@​ViachaslauIhnatsiuk).
  • Fixed: selector-type-no-unknown false positives for selectmenu and popup (#8376) (@​Mouvedia).
Changelog

Sourced from stylelint's changelog.

16.15.0 - 2025-02-28

It adds 1 new rule, a languageOptions configuration property for configuring some of the new rules added in 16.13.0, regex support to 1 option and support for computing EditInfo to 6 rules. It fixes 9 bugs, including 2 with the tap reporter.

  • Added: syntax-string-no-invalid rule (#8331) (@​ryo-manba).
  • Added: languageOptions configuration property (#8297) (@​ryo-manba).
  • Added: regex support to ignoreAtRules option of at-rule-empty-line-before (#8385) (@​ryo-manba).
  • Added: alpha-value-notation support for computing EditInfo (#8369) (@​pamelalozano16).
  • Added: color-hex-length support for computing EditInfo (#8415) (@​ryo-manba).
  • Added: comment-empty-line-before support for computing EditInfo (#8416) (@​ryo-manba).
  • Added: comment-whitespace-inside support for computing EditInfo (#8417) (@​ryo-manba).
  • Added: custom-property-empty-line-before support for computing EditInfo (#8418) (@​ryo-manba).
  • Added: declaration-block-no-duplicate-properties support for computing EditInfo (#8363) (@​romainmenke).
  • Fixed: tap formatter not escaping # and \ in its test point descriptions (#8334) (@​Mouvedia).
  • Fixed: tap formatter outputting invalid YAML blocks for rules containing double quotes in their warnings' messages (#8334) (@​Mouvedia).
  • Fixed: declaration-block-no-redundant-longhand-properties false positives for properties with !important (#8366) (@​immitsu).
  • Fixed: EditInfo missing semicolon in text field (#8370) (@​pamelalozano16).
  • Fixed: declaration-property-value-keyword-no-deprecated false negatives for text-decoration: blink (#8351) (@​Mouvedia).
  • Fixed: declaration-property-value-keyword-no-deprecated false positives for styled components interpolated functions (#8392) (@​Mouvedia).
  • Fixed: font-family-name-quotes false positives due to vendor-prefixed font-size values (#8393) (@​Mouvedia).
  • Fixed: font-family-no-missing-generic-family-keyword false positives for math, emoji and fangsong (#8395) (@​ViachaslauIhnatsiuk).
  • Fixed: selector-type-no-unknown false positives for selectmenu and popup (#8376) (@​Mouvedia).
Commits

Updates typescript from 5.7.3 to 5.8.2

Release notes

Sourced from typescript's releases.

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • Additional commits viewable in compare view

Updates vitest from 3.0.5 to 3.0.7

Release notes

Sourced from vitest's releases.

v3.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.0.6

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 358cccf chore: release v3.0.7
  • 365ffe6 fix(deps): update all non-major dependencies (#7543)
  • aaa5855 perf(browser): do wdio context switching only once per file (#7549)
  • f71004f fix(spy): clear/reset/restore mocks in stack order (#7499)
  • 9584be3 chore: release v3.0.6
  • 027ce9b fix(reporters): render tasks in tree when in TTY (#7503)
  • b62ac22 chore: use tinyglobby instead of fast-glob in Vitest (#7504)
  • 167a98d fix: exclude queueMicrotask from default fake timers to not break node fetc...
  • 6cc408d fix(deps): update all non-major dependencies (#7507)
  • 8f13825 docs: fix sequence.hooks: 'stack' as default (#7492)
  • Additional commits viewable in compare view

Updates react-markdown from 10.0.0 to 10.0.1

Release notes

Sourced from react-markdown's releases.

10.0.1

Full Changelog: remarkjs/react-markdown@10.0.0...10.0.1

Changelog

Sourced from react-markdown's changelog.

Changelog

All notable changes will be documented in this file.

Commits

Updates keycloak-js from 26.1.2 to 26.1.3

Release notes

Sourced from keycloak-js's releases.

26.1.3

Commits

Updates ra-data-simple-rest from 5.5.3 to 5.6.2

Release notes

Sourced from ra-data-simple-rest's releases.

5.6.2

  • Make <TabbedForm tabs> use the onChange prop (#10549) (erwanMarmelab)
  • Fix B&W theme buttons in dark mode (#10557) (fzaninotto)
  • Fix create-react-admin generated package.json when using yarn (#10556) (djhi)
  • Fix collapsed menu in B&W theme (#10542) (fzaninotto)
  • [Doc] Update <MarkdownInput> doc to address vulnerability in dompurify (#10554) (slax57)
  • [Doc] Update <ReferenceManyInput> documentation to mention it cannot reorder its items (#10551) (djhi)
  • [Doc] Improve <FormFillerButton> documentation by explaining the dataProvider.getCompletion() (#10550) (djhi)
  • [Doc] Create a ShowDialog doc (#10548) (erwanMarmelab)
  • [Doc] Document useSourceContext and improve useSimpleFormIteratorItem documentation (#10547) (slax57)
  • [Doc] Fix <ReferenceInput enableGetChoices> example (#10543) (slax57)
  • [chore] Fix release script does not include the changelog in the tag (#10544) (slax57)

5.6.1

  • Fix create-react-admin package manager detection (#10534) (djhi)
  • Fix create-react-admin does not ignore auth-provider when specified and using supabase (#10533) (djhi)
  • Fix <NumberInput> and <AutocompleteInput> do not forward the event when calling Description has been truncated

…7 updates

Bumps the patch-and-minor-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.4` | `22.13.8` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `3.0.5` | `3.0.7` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.0.1` | `10.0.2` |
| [msw](https://github.com/mswjs/msw) | `2.7.0` | `2.7.3` |
| [npm-check-updates](https://github.com/raineorshine/npm-check-updates) | `17.1.14` | `17.1.15` |
| [prettier](https://github.com/prettier/prettier) | `3.5.1` | `3.5.3` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.14.1` | `16.15.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.5` | `3.0.7` |
| [react-markdown](https://github.com/remarkjs/react-markdown) | `10.0.0` | `10.0.1` |
| [keycloak-js](https://github.com/keycloak/keycloak) | `26.1.2` | `26.1.3` |
| [ra-data-simple-rest](https://github.com/marmelab/react-admin) | `5.5.3` | `5.6.2` |
| [ra-i18n-polyglot](https://github.com/marmelab/react-admin) | `5.5.3` | `5.6.2` |
| [react-admin](https://github.com/marmelab/react-admin) | `5.5.3` | `5.6.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.1.0` | `6.2.0` |
| [ra-core](https://github.com/marmelab/react-admin) | `5.5.3` | `5.6.2` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.1.7` | `15.2.0` |



Updates `@types/node` from 22.13.4 to 22.13.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vitest/coverage-v8` from 3.0.5 to 3.0.7
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/coverage-v8)

Updates `eslint-config-prettier` from 10.0.1 to 10.0.2
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v10.0.1...v10.0.2)

Updates `msw` from 2.7.0 to 2.7.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.7.0...v2.7.3)

Updates `npm-check-updates` from 17.1.14 to 17.1.15
- [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
- [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
- [Commits](raineorshine/npm-check-updates@v17.1.14...v17.1.15)

Updates `prettier` from 3.5.1 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.1...3.5.3)

Updates `stylelint` from 16.14.1 to 16.15.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.14.1...16.15.0)

Updates `typescript` from 5.7.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

Updates `vitest` from 3.0.5 to 3.0.7
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/vitest)

Updates `react-markdown` from 10.0.0 to 10.0.1
- [Release notes](https://github.com/remarkjs/react-markdown/releases)
- [Changelog](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
- [Commits](remarkjs/react-markdown@10.0.0...10.0.1)

Updates `keycloak-js` from 26.1.2 to 26.1.3
- [Release notes](https://github.com/keycloak/keycloak/releases)
- [Commits](keycloak/keycloak@26.1.2...26.1.3)

Updates `ra-data-simple-rest` from 5.5.3 to 5.6.2
- [Release notes](https://github.com/marmelab/react-admin/releases)
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.5.3...v5.6.2)

Updates `ra-i18n-polyglot` from 5.5.3 to 5.6.2
- [Release notes](https://github.com/marmelab/react-admin/releases)
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.5.3...v5.6.2)

Updates `react-admin` from 5.5.3 to 5.6.2
- [Release notes](https://github.com/marmelab/react-admin/releases)
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.5.3...v5.6.2)

Updates `vite` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/[email protected]/packages/vite)

Updates `ra-core` from 5.5.3 to 5.6.2
- [Release notes](https://github.com/marmelab/react-admin/releases)
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.5.3...v5.6.2)

Updates `eslint-config-next` from 15.1.7 to 15.2.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.2.0/packages/eslint-config-next)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: npm-check-updates
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: react-markdown
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: keycloak-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: ra-data-simple-rest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: ra-i18n-polyglot
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: react-admin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: vite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: ra-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 3, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 4, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 4, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/patch-and-minor-dependencies-f02e6dc63d branch March 4, 2025 09:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Development

Successfully merging this pull request may close these issues.

0 participants