Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2025

Bumps the npm group with 10 updates in the / directory:

Package From To
@types/node 24.0.10 24.9.2
js-base64 3.7.7 3.7.8
@biomejs/biome 2.0.6 2.3.2
@rollup/plugin-node-resolve 16.0.1 16.0.3
@rollup/plugin-typescript 12.1.4 12.3.0
jasmine 5.8.0 5.12.0
publint 0.3.12 0.3.15
puppeteer 24.11.2 24.27.0
rollup 4.44.1 4.52.5
typescript 5.8.3 5.9.3

Updates @types/node from 24.0.10 to 24.9.2

Commits

Updates js-base64 from 3.7.7 to 3.7.8

Commits
  • 5fd183d version 3.7.8
  • fa94481 add permissions section to make CodeQL happy
  • fb0b409 add node 24
  • f2587cc use unknown instead of any accordingly to Aaron
  • 237bffc use unknown instead of any accordingly to Aaron
  • 73236ad Merge pull request #187 from Chanran/feat/optimize-atobPolyfill-performance
  • 9df6b69 Merge pull request #179 from lifeiscontent/patch-1
  • 1b1c84f feat: optimize atobPolyfill performance to avoid minor gc
  • 09fde58 Update base64.ts
  • df91b05 add node 22
  • See full diff in compare view

Updates @biomejs/biome from 2.0.6 to 2.3.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.2

2.3.2

Patch Changes

  • #7859 c600618 Thanks @​Netail! - Added the nursery rule noIncrementDecrement, disallows the usage of the unary operators ++ and --.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.

  • #7874 e617d36 Thanks @​Bertie690! - Fixed #7230: noUselessStringConcat no longer emits false positives for multi-line strings with leading + operators.

    Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line.
    Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

    Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

    Example

    // The following code used to error if the `+` operators were at the start of lines (as opposed to the end).
    // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it.
    const reallyLongStringThatShouldNotError =
      "Lorem ipsum dolor sit amet consectetur adipiscing elit." +
      "Quisque faucibus ex sapien vitae pellentesque sem placerat." +
      "In id cursus mi pretium tellus duis convallis." +
      "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";
  • #7786 33ffcd5 Thanks @​daivinhtran! - Fixed #7601: Properly match Grit plugin's code snippet with only one child.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.

What's Changed

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.2

Patch Changes

  • #7859 c600618 Thanks @​Netail! - Added the nursery rule noIncrementDecrement, disallows the usage of the unary operators ++ and --.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.

  • #7874 e617d36 Thanks @​Bertie690! - Fixed #7230: noUselessStringConcat no longer emits false positives for multi-line strings with leading + operators.

    Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line.
    Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

    Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

    Example

    // The following code used to error if the `+` operators were at the start of lines (as opposed to the end).
    // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it.
    const reallyLongStringThatShouldNotError =
      "Lorem ipsum dolor sit amet consectetur adipiscing elit." +
      "Quisque faucibus ex sapien vitae pellentesque sem placerat." +
      "In id cursus mi pretium tellus duis convallis." +
      "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";
  • #7786 33ffcd5 Thanks @​daivinhtran! - Fixed #7601: Properly match Grit plugin's code snippet with only one child.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.

2.3.1

Patch Changes

  • #7840 72afdfa Thanks @​ematipico! - Fixed #7838, which caused the new --css-parse-* arguments not being recognised by the ci command.

  • #7789 d5b416e Thanks @​fronterior! - Fixed the LSP method workspace/didChangeWorkspaceFolders to perform incremental updates instead of replacing the entire folder list.

  • #7852 bd254c7 Thanks @​dyc3! - Fixed #7843: The CSS parser, when tailwindDirectives is enabled, correctly parses --*: initial;.

  • #7872 0fe13fe Thanks @​dyc3! - Fixed #7861: The HTML parser will now accept Svelte attribute shorthand syntax in .svelte files.

  • #7866 7b2600b Thanks @​dyc3! - Fixed #7860: The css parser, with tailwindDirectives enabled, will now accept @plugin options.

  • #7853 fe90c78 Thanks @​dyc3! - Fixed #7848: The css parser with tailwindDirectives enabled will now correctly parse tailwind's source exclude syntax: @source not "foo.css";

  • #7878 c9f7fe5 Thanks @​ematipico! - Fixed #7857: Biome now parses <script> tags as TypeScript when analysing .astro files.

  • #7867 b42b718 Thanks @​smorimoto! - Fixed incorrect option name in HTML parser error message.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by ematipico, a new releaser for @​biomejs/biome since your current version.


Updates @rollup/plugin-node-resolve from 16.0.1 to 16.0.3

Changelog

Sourced from @​rollup/plugin-node-resolve's changelog.

v16.0.3

2025-10-13

Bugfixes

  • fix: resolve bare targets of package "imports" using export maps; avoid fileURLToPath(null) (#1908)

v16.0.2

2025-10-04

Bugfixes

  • fix: error thrown with empty entry (#1893)
Commits
  • 764910a chore(release): node-resolve v16.0.3
  • 3569720 fix(node-resolve): resolve bare targets of package "imports" using export map...
  • 516ed1d chore(release): node-resolve v16.0.2
  • 7ad5057 fix(node-resolve): error thrown with empty entry (#1893)
  • See full diff in compare view

Updates @rollup/plugin-typescript from 12.1.4 to 12.3.0

Changelog

Sourced from @​rollup/plugin-typescript's changelog.

v12.3.0

2025-10-23

Features

  • feat: expose latest Program to transformers in watch mode (#1923)

v12.2.0

2025-10-22

Features

  • feat: process .js when allowJs is enabled (#1920)
Commits
  • 973054d chore(release): typescript v12.3.0
  • b6f027b feat(typescript): expose latest Program to transformers in watch mode (#1923)
  • a9cdbb5 chore(release): typescript v12.2.0
  • 89fa680 feat(typescript): process .js when allowJs is enabled (#1920)
  • See full diff in compare view

Updates jasmine from 5.8.0 to 5.12.0

Release notes

Sourced from jasmine's releases.

v5.12.0

Please see the release notes.

v5.11.0

Please see the release notes.

v5.10.0

Please see the release notes.

v5.9.0

Please see the release notes.

Commits
  • 2e50eb9 Bump version to 5.12.0
  • d6adaff Bump version to 5.11.0
  • 6fd6b39 Revert "Allow glob 11.x in addition to 10.x"
  • 8295f17 Allow glob 11.x in addition to 10.x
  • 7aefc26 Use boot(true) where possible
  • 401cc17 Fix duplicate names in own tests
  • e1e9411 Bump version to 5.10.0
  • 2712681 Fixed release notes
  • 642b38c Bump version to 5.9.0
  • 4aa1dbb Fixed startup hang when using ES module loaders in parallel mode
  • Additional commits viewable in compare view

Updates jasmine-core from 5.8.0 to 5.12.1

Release notes

Sourced from jasmine-core's releases.

v5.12.1

Please see the release notes.

v5.12.0

Please see the release notes.

v5.11.0

Please see the release notes.

v5.10.0

Please see the release notes.

v5.9.0

Please see the release notes.

Commits
  • 18d4d38 Fix version number in 5.12.1 release notes
  • 53e9bc6 Bump version to 5.12.1
  • 2be50e1 Merge branch 'bonkevin-fix-custom-matcher'
  • 27a1257 fix: unavailable custom matchers on top-it
  • 9a67c4e Copy 6.0.0-alpha.1 release notes from branch
  • 7ba53b2 Bump version to 5.12.0
  • dbc1f92 Revert "Clicking a link in the HTML reporter does exact filtering"
  • 489b83c Revert "Move knowledge of query parameters out of boot1.js"
  • c590095 Copy 6.0.0-alpha.0 release notes from branch
  • 0688db8 Bump version to 5.11.0
  • Additional commits viewable in compare view

Updates publint from 0.3.12 to 0.3.15

Release notes

Sourced from publint's releases.

publint@0.3.15

Patch Changes

  • Skip file existence checks when crawling subpath imports as they may be dev-only and not used after bundling or publish. This check may be improved in the future when publint can scan for files to see if the subpath imports are used. (0d72997)

  • Handle exports["default"] and exports['default'] for CJS_WITH_ESMODULE_DEFAULT_EXPORT rule (8285f77)

publint@0.3.14

Patch Changes

  • Add a new warning when an entrypoint is exported as CJS-only, has a default export, and has the __esModule marker. This setup has different interpretations by bundlers and runtimes, and implicit handling detection that may not be obvious for both package authors and users, hence it is discouraged. (#201)

publint@0.3.13

Patch Changes

  • Improve message for "main" field with empty value and has missing files (0499518)

  • Update fallback arrays message for CLI output (37b9dd5)

Changelog

Sourced from publint's changelog.

0.3.15

Patch Changes

  • Skip file existence checks when crawling subpath imports as they may be dev-only and not used after bundling or publish. This check may be improved in the future when publint can scan for files to see if the subpath imports are used. (0d72997)

  • Handle exports["default"] and exports['default'] for CJS_WITH_ESMODULE_DEFAULT_EXPORT rule (8285f77)

0.3.14

Patch Changes

  • Add a new warning when an entrypoint is exported as CJS-only, has a default export, and has the __esModule marker. This setup has different interpretations by bundlers and runtimes, and implicit handling detection that may not be obvious for both package authors and users, hence it is discouraged. (#201)

0.3.13

Patch Changes

  • Improve message for "main" field with empty value and has missing files (0499518)

  • Update fallback arrays message for CLI output (37b9dd5)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for publint since your current version.


Updates puppeteer from 24.11.2 to 24.27.0

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v24.27.0

24.27.0 (2025-10-29)

🎉 Features

🛠️ Fixes

📄 Documentation

puppeteer: v24.27.0

24.27.0 (2025-10-29)

🎉 Features

♻️ Chores

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.26.1 to 24.27.0

puppeteer-core: v24.26.1

24.26.1 (2025-10-22)

🛠️ Fixes

puppeteer: v24.26.1

... (truncated)

Changelog

Sourced from puppeteer's changelog.

24.27.0 (2025-10-29)

🎉 Features

♻️ Chores

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.26.1 to 24.27.0

🛠️ Fixes

📄 Documentation

24.26.1 (2025-10-22)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.26.0 to 24.26.1

🛠️ Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for puppeteer since your current version.


Updates rollup from 4.44.1 to 4.52.5

Release notes

Sourced from rollup's releases.

v4.52.5

4.52.5

2025-10-18

Bug Fixes

  • Always produce valid UUIDs as debugIds in sourcemaps (#6144)

Pull Requests

v4.52.4

4.52.4

2025-10-03

Bug Fixes

  • Fix an issue where the wrong branch of nullish coalescing was picked (#6133)

Pull Requests

v4.52.3

4.52.3

2025-09-27

Bug Fixes

  • Fix check in native loader for environments that do not support reports (#6123)

Pull Requests

... (truncated)

Changelog

Sourced from rollup's changelog.

4.52.5

2025-10-18

Bug Fixes

  • Always produce valid UUIDs as debugIds in sourcemaps (#6144)

Pull Requests

4.52.4

2025-10-03

Bug Fixes

  • Fix an issue where the wrong branch of nullish coalescing was picked (#6133)

Pull Requests

4.52.3

2025-09-27

Bug Fixes

  • Fix check in native loader for environments that do not support reports (#6123)

Pull Requests

4.52.2

... (truncated)

Commits
  • 55a8fd5 4.52.5
  • 58f5a7b fix: generation of debugIDs with invalid length (#6144)
  • 0b816b0 chore(deps): lock file maintenance minor/patch updates (#6146)
  • a973ed8 chore: eslint enable concurrency option (#6143)
  • bfa9e9f chore(deps): update actions/setup-node action to v6 (#6147)
  • 69a9336 fix(deps): lock file maintenance minor/patch updates (#6142)
  • 88b18b9 chore(deps): update peter-evans/create-or-update-comment action to v5 (#6140)
  • c9ab522 chore(deps): update peter-evans/find-comment action to v4 (#6141)
  • 01f02bd chore(deps): lock file maintenance minor/patch updates (#6135)
  • cd81da7 4.52.4
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for rollup since your current version.


Updates typescript from 5.8.3 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • c63de15 Bump version to 5.9.3 and LKG
  • 8428ca4 🤖 Pick PR #62438 (Fix incorrectly ignored dts file fr...) into release-5.9 (#...
  • a131cac 🤖 Pick PR #62351 (Add missing Float16Array constructo...) into release-5.9 (#...
  • 0424333 🤖 Pick PR #62423 (Revert PR 61928) into release-5.9 (#62425)
  • bdb641a 🤖 Pick PR #62311 (Fix parenthesizer rules for manuall...) into release-5.9 (#...
  • 0d9b9b9 🤖 Pick PR #61978 (Restructure CI to prepare for requi...) into release-5.9 (#...
  • 2dce0c5 Intentionally regress one buggy declaration output to an older version (#62163)
  • 5be3346 Bump version to 5.9.2 and LKG
  • ad825f2 Bump version to 5.9.1-rc and LKG
  • 463a5bf Update LKG
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this ...

Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 1, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

Bumps the npm group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.0.10` | `24.9.2` |
| [js-base64](https://github.com/dankogai/js-base64) | `3.7.7` | `3.7.8` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.0.6` | `2.3.2` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `16.0.1` | `16.0.3` |
| [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) | `12.1.4` | `12.3.0` |
| [jasmine](https://github.com/jasmine/jasmine-npm) | `5.8.0` | `5.12.0` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.3.12` | `0.3.15` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.11.2` | `24.27.0` |
| [rollup](https://github.com/rollup/rollup) | `4.44.1` | `4.52.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.3` |



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

Updates `js-base64` from 3.7.7 to 3.7.8
- [Commits](dankogai/js-base64@3.7.7...3.7.8)

Updates `@biomejs/biome` from 2.0.6 to 2.3.2
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.2/packages/@biomejs/biome)

Updates `@rollup/plugin-node-resolve` from 16.0.1 to 16.0.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v16.0.3/packages/node-resolve)

Updates `@rollup/plugin-typescript` from 12.1.4 to 12.3.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.3.0/packages/typescript)

Updates `jasmine` from 5.8.0 to 5.12.0
- [Release notes](https://github.com/jasmine/jasmine-npm/releases)
- [Changelog](https://github.com/jasmine/jasmine-npm/blob/main/RELEASE.md)
- [Commits](jasmine/jasmine-npm@v5.8.0...v5.12.0)

Updates `jasmine-core` from 5.8.0 to 5.12.1
- [Release notes](https://github.com/jasmine/jasmine/releases)
- [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md)
- [Commits](jasmine/jasmine@v5.8.0...v5.12.1)

Updates `publint` from 0.3.12 to 0.3.15
- [Release notes](https://github.com/publint/publint/releases)
- [Changelog](https://github.com/publint/publint/blob/master/packages/publint/CHANGELOG.md)
- [Commits](https://github.com/publint/publint/commits/publint@0.3.15/packages/publint)

Updates `puppeteer` from 24.11.2 to 24.27.0
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md)
- [Commits](puppeteer/puppeteer@puppeteer-v24.11.2...puppeteer-v24.27.0)

Updates `rollup` from 4.44.1 to 4.52.5
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.44.1...v4.52.5)

Updates `typescript` from 5.8.3 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: js-base64
  dependency-version: 3.7.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-version: 16.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@rollup/plugin-typescript"
  dependency-version: 12.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: jasmine
  dependency-version: 5.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: jasmine-core
  dependency-version: 5.12.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: publint
  dependency-version: 0.3.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: puppeteer
  dependency-version: 24.27.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: rollup
  dependency-version: 4.52.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-0b2af26e84 branch from 072a93c to 294763c Compare December 2, 2025 00:26
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant