Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 15, 2025

Bumps the development-dependencies group with 8 updates in the / directory:

Package From To
esbuild 0.27.0 0.27.1
esbuild-node-externals 1.19.1 1.20.1
eslint 9.39.1 9.39.2
lint-staged 16.2.6 16.2.7
prettier 3.6.2 3.7.4
ts-jest 29.4.5 29.4.6
typescript-eslint 8.46.4 8.49.0
obsidian 1.10.3 1.11.0

Updates esbuild from 0.27.0 to 0.27.1

Release notes

Sourced from esbuild's releases.

v0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Commits

Updates esbuild-node-externals from 1.19.1 to 1.20.1

Release notes

Sourced from esbuild-node-externals's releases.

esbuild-node-externals: v1.20.1

1.20.1 (2025-11-15)

Bug Fixes

esbuild-node-externals: v1.20.0

1.20.0 (2025-11-15)

Features

  • ci setup trusted publishing for npm (ebd7799)
Commits
  • f00fd2c chore(main): release esbuild-node-externals 1.20.1 (#82)
  • b6b2e0f fix: fix npm publishing
  • 5413007 fix: fix npm publishing
  • de8eaba chore(main): release esbuild-node-externals 1.20.0 (#81)
  • ebd7799 feat: ci setup trusted publishing for npm
  • e4d7200 fix: ci release autopublish
  • 05f7625 ci: proper check for release pleaase
  • 29a9648 fix: fix ci release autopublish
  • See full diff in compare view
Maintainer changes

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


Updates eslint from 9.39.1 to 9.39.2

Release notes

Sourced from eslint's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)
Commits

Updates lint-staged from 16.2.6 to 16.2.7

Release notes

Sourced from lint-staged's releases.

v16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.
Changelog

Sourced from lint-staged's changelog.

16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.
Commits
  • 0c1b000 chore(changeset): release
  • 595b202 build(deps): update dependencies
  • ef74c8d fix: do display "failed to spawn" message when task fails normally
  • 5cf2a1e style: do not autofix when running lint-staged
  • ba40012 chore: drop npx from commit-msg hook
  • d67de9a chore: fix pre-push hook usage with changeset
  • 8017d1d build(deps): update dependencies
  • 922d7f4 ci: remove dependabot integration, it's not useful
  • 6aeeef1 docs: add PR template
  • a5728b5 docs: add AGENTS.md
  • Additional commits viewable in compare view

Updates prettier from 3.6.2 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits
Maintainer changes

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


Updates ts-jest from 29.4.5 to 29.4.6

Release notes

Sourced from ts-jest's releases.

v29.4.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.6 (2025-12-01)

Bug Fixes

  • log hybrid module as warning instead of failing tests (#5144) (528d37c), closes #5130
Commits
  • 202bde5 chore(release): 29.4.6 (#5146)
  • 528d37c fix: log hybrid module as warning instead of failing tests (#5144)
  • 141e5af build(deps): update github/codeql-action digest to 497990d
  • d281cce build(deps): update google/osv-scanner-action action to v2.3.0
  • 0d20322 build(deps): update dependency memfs to ^4.51.0
  • 455dde2 build(deps): update dependency js-yaml to ^4.1.1
  • d579480 build(deps): update dependency @​types/node to v20.19.25
  • f6859d0 build(deps): update dependency @​types/yargs to ^17.0.35
  • 4d7e432 build(deps): update github/codeql-action digest to d3ced5c
  • 4ea70c9 build(deps): update actions/checkout digest to 34e1148
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.46.4 to 8.49.0

Release notes

Sourced from typescript-eslint's releases.

v8.49.0

8.49.0 (2025-12-08)

🚀 Features

  • eslint-plugin: use Intl.Segmenter instead of graphemer (#11804)

🩹 Fixes

  • deps: update dependency prettier to v3.7.2 (#11820)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

  • eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
  • rule-tester: remove workaround for jest circular structure error (#11772)
  • typescript-estree: gate all errors behind allowInvalidAST (#11693)
  • typescript-estree: replace fast-glob with tinyglobby (#11740)

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.49.0 (2025-12-08)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.48.1 (2025-12-02)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.48.0 (2025-11-24)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.47.0 (2025-11-17)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates obsidian from 1.10.3 to 1.11.0

Commits

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 group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…directory with 8 updates

Bumps the development-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.0` | `0.27.1` |
| [esbuild-node-externals](https://github.com/pradel/esbuild-node-externals) | `1.19.1` | `1.20.1` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.6` | `16.2.7` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.5` | `29.4.6` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.4` | `8.49.0` |
| [obsidian](https://github.com/obsidianmd/obsidian-api) | `1.10.3` | `1.11.0` |



Updates `esbuild` from 0.27.0 to 0.27.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.27.1)

Updates `esbuild-node-externals` from 1.19.1 to 1.20.1
- [Release notes](https://github.com/pradel/esbuild-node-externals/releases)
- [Commits](pradel/esbuild-node-externals@esbuild-node-externals-v1.19.1...esbuild-node-externals-v1.20.1)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

Updates `lint-staged` from 16.2.6 to 16.2.7
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.2.6...v16.2.7)

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

Updates `ts-jest` from 29.4.5 to 29.4.6
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.5...v29.4.6)

Updates `typescript-eslint` from 8.46.4 to 8.49.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.49.0/packages/typescript-eslint)

Updates `obsidian` from 1.10.3 to 1.11.0
- [Changelog](https://github.com/obsidianmd/obsidian-api/blob/master/CHANGELOG.md)
- [Commits](https://github.com/obsidianmd/obsidian-api/commits)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.27.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: esbuild-node-externals
  dependency-version: 1.20.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: lint-staged
  dependency-version: 16.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: obsidian
  dependency-version: 1.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 15, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 15, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Note

Free review on us!

CodeRabbit is offering free reviews until Wed Dec 17 2025 to showcase some of the refinements we've made.

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Contributor

Dependency Review

The following issues were found:
  • ❌ 2 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 94 package(s) with unknown licenses.
See the Details below.

Vulnerabilities

package-lock.json

NameVersionVulnerabilitySeverity
dompurify2.5.8DOMPurify allows Cross-site Scripting (XSS)moderate
prismjs1.27.0PrismJS DOM Clobbering vulnerabilitymoderate

License Issues

package-lock.json

PackageVersionLicenseIssue Type
@atlaskit/adf-schema51.5.1NullUnknown License
@atlaskit/afm-i18n-platform-editor-editor-common2.10.0NullUnknown License
@atlaskit/afm-i18n-platform-jql-jql-editor2.10.0NullUnknown License
@atlaskit/analytics-namespaced-context7.2.0NullUnknown License
@atlaskit/avatar-group12.4.4NullUnknown License
@atlaskit/badge18.3.0NullUnknown License
@atlaskit/button23.7.0NullUnknown License
@atlaskit/calendar17.2.0NullUnknown License
@atlaskit/checkbox17.2.0NullUnknown License
@atlaskit/code17.4.0NullUnknown License
@atlaskit/css0.17.1NullUnknown License
@atlaskit/datetime-picker17.2.0NullUnknown License
@atlaskit/dropdown-menu16.3.23NullUnknown License
@atlaskit/ds-lib5.3.0NullUnknown License
@atlaskit/editor-common110.44.0NullUnknown License
@atlaskit/editor-palette2.1.18NullUnknown License
@atlaskit/editor-shared-styles3.10.3NullUnknown License
@atlaskit/editor-toolbar0.18.3NullUnknown License
@atlaskit/editor-toolbar-model0.2.9NullUnknown License
@atlaskit/embedded-confluence4.3.3NullUnknown License
@atlaskit/emoji69.9.1NullUnknown License
@atlaskit/empty-state10.1.9NullUnknown License
@atlaskit/flag17.6.0NullUnknown License
@atlaskit/form15.0.0NullUnknown License
@atlaskit/frontend-utilities3.2.2NullUnknown License
@atlaskit/give-kudos4.4.9NullUnknown License
@atlaskit/icon29.1.0NullUnknown License
@atlaskit/icon-file-type7.0.7NullUnknown License
@atlaskit/icon-lab5.12.2NullUnknown License
@atlaskit/icon-object7.4.0NullUnknown License
@atlaskit/image3.0.4NullUnknown License
@atlaskit/inline-dialog18.0.6NullUnknown License
@atlaskit/jql-autocomplete2.0.3NullUnknown License
@atlaskit/jql-editor5.9.2NullUnknown License
@atlaskit/jql-editor-autocomplete-rest3.0.2NullUnknown License
@atlaskit/jql-editor-common3.0.2NullUnknown License
@atlaskit/legacy-custom-icons0.22.17NullUnknown License
@atlaskit/link-analytics11.0.1NullUnknown License
@atlaskit/link-datasource4.30.14NullUnknown License
@atlaskit/link-picker4.1.1NullUnknown License
@atlaskit/link-provider4.0.6NullUnknown License
@atlaskit/link-test-helpers9.0.0NullUnknown License
@atlaskit/linking-common9.9.0NullUnknown License
@atlaskit/logo19.9.5NullUnknown License
@atlaskit/lozenge13.1.2NullUnknown License
@atlaskit/media-card79.10.0NullUnknown License
@atlaskit/media-client35.7.0NullUnknown License
@atlaskit/media-document-viewer0.6.1NullUnknown License
@atlaskit/media-file-preview0.15.2NullUnknown License
@atlaskit/media-picker70.1.3NullUnknown License
@atlaskit/media-svg2.1.13NullUnknown License
@atlaskit/media-viewer52.5.1NullUnknown License
@atlaskit/mention24.4.3NullUnknown License
@atlaskit/menu8.4.11NullUnknown License
@atlaskit/motion5.3.10NullUnknown License
@atlaskit/object1.0.4NullUnknown License
@atlaskit/onboarding14.4.14NullUnknown License
@atlaskit/people-teams-ui-public3.7.0NullUnknown License
@atlaskit/popup4.7.0NullUnknown License
@atlaskit/primitives16.4.2NullUnknown License
@atlaskit/profilecard24.24.2NullUnknown License
@atlaskit/range9.3.0NullUnknown License
@atlaskit/react-select3.10.0NullUnknown License
@atlaskit/react-ufo4.16.1NullUnknown License
@atlaskit/rovo-agent-components3.15.1NullUnknown License
@atlaskit/rovo-triggers5.1.0NullUnknown License
@atlaskit/section-message8.10.0NullUnknown License
@atlaskit/select21.5.0NullUnknown License
@atlaskit/side-navigation11.0.29NullUnknown License
@atlaskit/smart-card43.15.1NullUnknown License
@atlaskit/smart-user-picker8.5.0NullUnknown License
@atlaskit/status3.0.25NullUnknown License
@atlaskit/tag14.1.17NullUnknown License
@atlaskit/task-decision19.2.15NullUnknown License
@atlaskit/teams-app-config1.12.9NullUnknown License
@atlaskit/teams-app-internal-analytics1.22.0NullUnknown License
@atlaskit/teams-app-internal-product-permissions1.2.9NullUnknown License
@atlaskit/teams-avatar2.4.4NullUnknown License
@atlaskit/teams-client4.30.0NullUnknown License
@atlaskit/teams-public0.65.1NullUnknown License
@atlaskit/textarea8.2.0NullUnknown License
@atlaskit/textfield8.2.0NullUnknown License
@atlaskit/tmp-editor-statsig15.11.0NullUnknown License
@atlaskit/tokens8.5.0NullUnknown License
@atlaskit/tooltip20.11.0NullUnknown License
@atlaskit/user-picker11.17.0NullUnknown License
@atlaskit/avatar25.6.0NullUnknown License
@atlaskit/blanket15.0.19NullUnknown License
@atlaskit/drawer11.0.20NullUnknown License
@atlaskit/inline-edit15.3.21NullUnknown License
@atlaskit/media-ui28.7.19NullUnknown License
@atlaskit/modal-dialog14.9.0NullUnknown License
@atlaskit/pragmatic-drag-and-drop-react-drop-indicator3.2.9NullUnknown License
@atlaskit/tabs18.3.0NullUnknown License

Scanned Files

  • package-lock.json
  • packages/cli/package.json
  • packages/lib/package.json
  • packages/mermaid-electron-renderer/package.json
  • packages/mermaid-puppeteer-renderer/package.json
  • packages/obsidian/package.json

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