Skip to content

fix: support load_as_directory for pnp mode#75

Merged
JounQin merged 2 commits intomainfrom
fix/pnp_nested_package_json
Apr 21, 2025
Merged

fix: support load_as_directory for pnp mode#75
JounQin merged 2 commits intomainfrom
fix/pnp_nested_package_json

Conversation

@JounQin
Copy link
Member

@JounQin JounQin commented Apr 21, 2025

close import-js/eslint-import-resolver-typescript#409

Important

Add test for @atlaskit/pragmatic-drag-and-drop resolution and remove nested package fixtures.

  • Tests:
    • Renamed pnp1() to pnp_basic() in pnp.rs for clarity.
    • Added resolve_pnp_nested_package_json() test in pnp.rs for @atlaskit/pragmatic-drag-and-drop resolution.
    • Removed resolve_nested_dir_with_package_json() test in resolve.rs.
  • Chores:
    • Deleted nested-package-json fixture files and related setup in .github/actions/pnpm/action.yml and justfile.
    • Added @atlaskit/pragmatic-drag-and-drop to devDependencies in pnp/package.json.
  • Resolver Logic:
    • Updated ResolverGeneric::load_pnp() in lib.rs to handle directory resolution with package.json redirection.

This description was created by Ellipsis for 1093e80. You can customize this summary. It will automatically update as commits are pushed.


Summary by CodeRabbit

  • Chores
    • Removed several fixture files and configuration related to nested package structures.
    • Updated installation scripts to eliminate steps for setting up nested package fixtures.
    • Added a new development dependency to the pnp fixture.
  • Tests
    • Renamed a test for clarity and added a new test for resolving a specific package in the PnP fixture.
    • Removed a test that previously checked resolution of nested directories with package.json files.

@JounQin JounQin requested a review from Copilot April 21, 2025 07:44
@coderabbitai
Copy link

coderabbitai bot commented Apr 21, 2025

Walkthrough

This change removes the entire nested-package-json fixture, including its Yarn configuration, package manifests, and related .gitignore file. All test and workflow steps associated with this fixture are deleted, including the removal of its installation command from the justfile and a related test from src/tests/resolve.rs. In addition, a new development dependency is added to the pnp fixture, and new and updated tests are introduced in src/tests/pnp.rs to cover package resolution scenarios involving Yarn Plug'n'Play. No public APIs or exported entities are changed outside of test functions.

Changes

Files/Paths Change Summary
.github/actions/pnpm/action.yml, justfile Removed workflow and install steps related to the nested-package-json fixture.
fixtures/misc/nested-package-json/... (all files) Deleted the entire nested-package-json fixture, including .gitignore, .yarnrc.yml, and all package.json files.
fixtures/pnp/package.json Added @atlaskit/pragmatic-drag-and-drop as a new devDependency.
src/tests/pnp.rs Renamed test pnp1 to pnp_basic; added new test resolve_pnp_nested_package_json.
src/tests/resolve.rs Removed test resolve_nested_dir_with_package_json.
src/lib.rs Modified load_pnp function to add early package self-resolution and directory resolution steps before inner resolver logic.

Sequence Diagram(s)

sequenceDiagram
    participant TestRunner
    participant Resolver
    participant PnPFixture

    TestRunner->>Resolver: initialize with ResolveOptions (main_fields)
    TestRunner->>Resolver: resolve("@atlaskit/pragmatic-drag-and-drop/combine", pnp_fixture_dir)
    Resolver->>PnPFixture: Locate package in PnP zip cache
    PnPFixture-->>Resolver: Return path to module file
    Resolver-->>TestRunner: Return resolved path
Loading

Possibly related PRs

  • test: add nested package json case #40: Removes the nested-package-json fixture files and related test and workflow steps, which were originally introduced in this PR; the changes are directly related as inverse modifications to the same feature.

Poem

A fixture once nested, now gone from the tree,
No more Yarn configs or deep package spree.
Tests have been shifted, dependencies new,
PnP’s the adventure we’re hopping into!
With zip files and modules, the path is now clear—
The codebase is lighter, let’s all give a cheer!
🐇✨


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between aa885d3 and 1093e80.

⛔ Files ignored due to path filters (2)
  • fixtures/misc/nested-package-json/yarn.lock is excluded by !**/yarn.lock, !**/*.lock
  • fixtures/pnp/yarn.lock is excluded by !**/yarn.lock, !**/*.lock
📒 Files selected for processing (11)
  • .github/actions/pnpm/action.yml (0 hunks)
  • fixtures/misc/nested-package-json/.gitignore (0 hunks)
  • fixtures/misc/nested-package-json/.yarnrc.yml (0 hunks)
  • fixtures/misc/nested-package-json/package.json (0 hunks)
  • fixtures/misc/nested-package-json/package/nested/package.json (0 hunks)
  • fixtures/misc/nested-package-json/package/package.json (0 hunks)
  • fixtures/pnp/package.json (1 hunks)
  • justfile (0 hunks)
  • src/lib.rs (2 hunks)
  • src/tests/pnp.rs (2 hunks)
  • src/tests/resolve.rs (0 hunks)
💤 Files with no reviewable changes (8)
  • fixtures/misc/nested-package-json/.yarnrc.yml
  • fixtures/misc/nested-package-json/package/nested/package.json
  • fixtures/misc/nested-package-json/package.json
  • fixtures/misc/nested-package-json/.gitignore
  • .github/actions/pnpm/action.yml
  • fixtures/misc/nested-package-json/package/package.json
  • justfile
  • src/tests/resolve.rs
🚧 Files skipped from review as they are similar to previous changes (2)
  • fixtures/pnp/package.json
  • src/tests/pnp.rs
🧰 Additional context used
🧠 Learnings (1)
📓 Common learnings
Learnt from: JounQin
PR: unrs/unrs-resolver#40
File: src/tests/resolve.rs:121-136
Timestamp: 2025-03-29T04:14:03.715Z
Learning: For tests involving npm/yarn package resolution in the unrs-resolver project, dependencies must be installed first using the appropriate package manager commands (pnpm i, yarn) in both the root directory and fixture directories like fixtures/pnp and fixtures/misc/nested-package-json.
Learnt from: JounQin
PR: unrs/unrs-resolver#75
File: fixtures/pnp/package.json:11-14
Timestamp: 2025-04-21T08:11:41.447Z
Learning: The project uses a justfile with an `install` task that includes running yarn in the fixtures/pnp directory to install dependencies with the command: `cd fixtures/pnp && yarn`.
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: Test (windows-latest)
  • GitHub Check: Benchmark
🔇 Additional comments (3)
src/lib.rs (3)

870-874: Good optimization for early resolution in PnP environments.

Adding this early check using load_package_self immediately after obtaining the PnP path is an excellent performance optimization that can avoid unnecessary resolution steps for many common cases.


892-894: Good fix for handling paths with leading slashes.

This correctly handles the case when the inner specifier begins with a slash by stripping it. This fixes a subtle bug where paths starting with slashes might not be properly resolved in PnP environments.


897-904:

Details

✅ Verification successful

Good enhancement for package.json redirection in PnP packages.

This addition specifically targets the issue described in import-js/eslint-import-resolver-typescript#409 with the @atlaskit/pragmatic-drag-and-drop package. By attempting to load the path as a directory with load_as_directory before falling back to the inner resolver, you're handling the case where a package.json in the directory redirects to another file.


🏁 Script executed:

#!/bin/bash
# Description: Verify the impact of the PnP directory resolution changes

# Look for test files that use the @atlaskit package to understand the test case
rg "@atlaskit/pragmatic-drag-and-drop" -A 3 -B 3

Length of output: 2179


Approve: Nested package.json redirections are correctly handled in PnP

The added load_as_directory call (src/lib.rs, lines 897–904) ensures that nested package.json files in Yarn PnP packages (e.g. subpath redirects for @atlaskit/pragmatic-drag-and-drop/combine) are respected. The test in src/tests/pnp.rs confirms that importing @atlaskit/pragmatic-drag-and-drop/combine resolves to the expected .js entry-point.

No further changes required.

✨ Finishing Touches
  • 📝 Generate Docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR adds a failing test case for a specific PnP scenario for the import-js/eslint-import-resolver-typescript#409 issue while removing an older nested-package-json test and its corresponding action step.

  • Removed the outdated test "resolve_nested_dir_with_package_json" from resolve.rs
  • Renamed a PnP test from "pnp1" to "pnp_basic" and added a new test "resolve_pnp_nested_package_json" in pnp.rs
  • Removed the nested-package-json installation step in the GitHub action configuration

Reviewed Changes

Copilot reviewed 9 out of 16 changed files in this pull request and generated no comments.

File Description
src/tests/resolve.rs Removed obsolete nested-package-json test
src/tests/pnp.rs Renamed test for clarity and added a new failing PnP test
.github/actions/pnpm/action.yml Removed installation step for nested-package-json fixtures
Files not reviewed (7)
  • fixtures/misc/nested-package-json/.gitignore: Language not supported
  • fixtures/misc/nested-package-json/.yarnrc.yml: Language not supported
  • fixtures/misc/nested-package-json/package.json: Language not supported
  • fixtures/misc/nested-package-json/package/nested/package.json: Language not supported
  • fixtures/misc/nested-package-json/package/package.json: Language not supported
  • fixtures/pnp/package.json: Language not supported
  • justfile: Language not supported
Comments suppressed due to low confidence (2)

src/tests/resolve.rs:120

  • The removal of the 'resolve_nested_dir_with_package_json' test may reduce coverage for nested package JSON resolution. Please ensure that this behavior is sufficiently tested elsewhere.
-#[test]
-fn resolve_nested_dir_with_package_json() {

.github/actions/pnpm/action.yml:34

  • The removal of the GitHub Action step for 'nested-package-json' might affect validation of installation steps for nested package scenarios. Confirm that any required steps for nested package JSON handling are covered by other tests.
-    - name: nested-package-json

@socket-security
Copy link

socket-security bot commented Apr 21, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedraf-schd@​4.0.310010010076100
Addedbind-event-listener@​3.0.010010010076100

View full report

Copy link

@ellipsis-dev ellipsis-dev bot left a comment

Choose a reason for hiding this comment

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

Important

Looks good to me! 👍

Reviewed everything up to aa885d3 in 1 minute and 57 seconds. Click for details.
  • Reviewed 172 lines of code in 14 files
  • Skipped 2 files when reviewing.
  • Skipped posting 10 draft comments. View those below.
  • Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
1. .github/actions/pnpm/action.yml:11
  • Draft comment:
    Removal of the 'nested-package-json' step is consistent with the deletion of its fixtures. Ensure no CI dependencies remain on this fixture.
  • Reason this comment was not posted:
    Confidence changes required: 0% <= threshold 50% None
2. justfile:16
  • Draft comment:
    The command 'cd fixtures/misc/nested-package-json && yarn' has been removed. Verify that removal of nested-package-json is intentional and not used elsewhere.
  • Reason this comment was not posted:
    Confidence changes required: 0% <= threshold 50% None
3. src/tests/pnp.rs:117
  • Draft comment:
    New test 'resolve_pnp_nested_package_json' added. Confirm that the expected full path for '@atlaskit/pragmatic-drag-and-drop/combine' is correct for the current cache naming scheme.
  • Reason this comment was not posted:
    Confidence changes required: 0% <= threshold 50% None
4. src/tests/resolve.rs:118
  • Draft comment:
    Removed test 'resolve_nested_dir_with_package_json'. Ensure that its covered functionality is either deprecated or migrated to appropriate tests.
  • Reason this comment was not posted:
    Confidence changes required: 0% <= threshold 50% None
5. .github/actions/pnpm/action.yml:31
  • Draft comment:
    Removed the 'nested-package-json' step. Confirm that any related fixture or test references are no longer needed.
  • Reason this comment was not posted:
    Comment was not on a location in the diff, so it can't be submitted as a review comment.
6. fixtures/misc/nested-package-json/package.json:1
  • Draft comment:
    Removed entire nested-package-json fixture. Verify that its removal does not affect any still-active tests or documentation.
  • Reason this comment was not posted:
    Comment was not on a location in the diff, so it can't be submitted as a review comment.
7. justfile:16
  • Draft comment:
    Removed the nested-package-json yarn install command. Ensure that cleaning up this outdated reference is intentional.
  • Reason this comment was not posted:
    Comment did not seem useful. Confidence is useful = 40% <= threshold 50% The comment is asking the PR author to ensure that the removal of a command is intentional. This falls under the rule of not asking the author to confirm their intention. However, it does point out a specific change, which is the removal of a command, and could be useful if rephrased to confirm the intention of the removal without asking the author to ensure it.
8. src/tests/pnp.rs:116
  • Draft comment:
    New test 'resolve_pnp_nested_package_json' added. Note that the expected path directly includes a specific yarn cache hash. Consider whether a more resilient check might be preferable if the hash changes.
  • Reason this comment was not posted:
    Decided after close inspection that this draft comment was likely wrong and/or not actionable: usefulness confidence = 10% vs. threshold = 50% The comment suggests making the test more resilient to hash changes, but: 1) All other tests in the file use the same pattern with specific hashes 2) This appears to be intentional test design 3) If hash changes were a problem, it would affect all tests equally 4) The comment doesn't provide a concrete alternative 5) This might be testing exact path resolution which requires precise matching Maybe there's a real issue with yarn cache hashes changing frequently in practice, making tests brittle. Maybe there's a better pattern I'm not aware of. The consistent use of exact hashes across all tests suggests this is intentional design. If hash changes were a practical problem, it would have been addressed globally, not just for this one test. Delete the comment. It questions an established pattern used throughout the test suite without providing actionable alternatives.
9. src/tests/resolve.rs:118
  • Draft comment:
    Removed the 'resolve_nested_dir_with_package_json' test. Confirm that its functionality is now adequately covered by other tests.
  • Reason this comment was not posted:
    Comment did not seem useful. Confidence is useful = 0% <= threshold 50% The comment is asking the PR author to confirm that the functionality of a removed test is covered by other tests. This falls under the rule of not asking the author to confirm or ensure things. Therefore, this comment should be removed.
10. src/tests/pnp.rs:91
  • Draft comment:
    Typographical issue: Consider renaming the test function from resolve_pnp_pkg_should_failed_while_disable_pnp_mode to something like resolve_pnp_pkg_should_fail_when_pnp_mode_is_disabled for clarity and grammatical correctness.
  • Reason this comment was not posted:
    Comment was not on a location in the diff, so it can't be submitted as a review comment.

Workflow ID: wflow_enVrRVBCSm6SQzVe

You can customize Ellipsis by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8009e6a and aa885d3.

⛔ Files ignored due to path filters (2)
  • fixtures/misc/nested-package-json/yarn.lock is excluded by !**/yarn.lock, !**/*.lock
  • fixtures/pnp/yarn.lock is excluded by !**/yarn.lock, !**/*.lock
📒 Files selected for processing (10)
  • .github/actions/pnpm/action.yml (0 hunks)
  • fixtures/misc/nested-package-json/.gitignore (0 hunks)
  • fixtures/misc/nested-package-json/.yarnrc.yml (0 hunks)
  • fixtures/misc/nested-package-json/package.json (0 hunks)
  • fixtures/misc/nested-package-json/package/nested/package.json (0 hunks)
  • fixtures/misc/nested-package-json/package/package.json (0 hunks)
  • fixtures/pnp/package.json (1 hunks)
  • justfile (0 hunks)
  • src/tests/pnp.rs (2 hunks)
  • src/tests/resolve.rs (0 hunks)
💤 Files with no reviewable changes (8)
  • fixtures/misc/nested-package-json/package.json
  • fixtures/misc/nested-package-json/package/package.json
  • .github/actions/pnpm/action.yml
  • justfile
  • src/tests/resolve.rs
  • fixtures/misc/nested-package-json/.yarnrc.yml
  • fixtures/misc/nested-package-json/.gitignore
  • fixtures/misc/nested-package-json/package/nested/package.json
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: JounQin
PR: unrs/unrs-resolver#40
File: src/tests/resolve.rs:121-136
Timestamp: 2025-03-29T04:14:03.715Z
Learning: For tests involving npm/yarn package resolution in the unrs-resolver project, dependencies must be installed first using the appropriate package manager commands (pnpm i, yarn) in both the root directory and fixture directories like fixtures/pnp and fixtures/misc/nested-package-json.
src/tests/pnp.rs (1)
Learnt from: JounQin
PR: unrs/unrs-resolver#40
File: src/tests/resolve.rs:121-136
Timestamp: 2025-03-29T04:14:03.715Z
Learning: For tests involving npm/yarn package resolution in the unrs-resolver project, dependencies must be installed first using the appropriate package manager commands (pnpm i, yarn) in both the root directory and fixture directories like fixtures/pnp and fixtures/misc/nested-package-json.
🪛 GitHub Actions: CI
src/tests/pnp.rs

[error] 127-127: Test failure in 'tests::pnp::resolve_pnp_nested_package_json': assertion left == right failed. Expected Ok path but got Err NotFound for '@atlaskit/pragmatic-drag-and-drop/combine'.

🪛 GitHub Actions: Code Coverage
src/tests/pnp.rs

[error] 127-127: Test failure in 'tests::pnp::resolve_pnp_nested_package_json': assertion left == right failed. Expected Ok path but got Err(NotFound) for '@atlaskit/pragmatic-drag-and-drop/combine'.

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (1)
src/tests/pnp.rs (1)

10-10: Function rename improves clarity.

Renaming from pnp1 to pnp_basic makes the test purpose clearer and follows a more descriptive naming convention.

@unrs unrs deleted a comment from coderabbitai bot Apr 21, 2025
@JounQin JounQin force-pushed the fix/pnp_nested_package_json branch from aa885d3 to 1093e80 Compare April 21, 2025 10:51
@sonarqubecloud
Copy link

@JounQin JounQin changed the title test: add failing pnp case for import-js/eslint-import-resolver-typescript#409 fix: support load_as_directory for pnp mode Apr 21, 2025
@codecov
Copy link

codecov bot commented Apr 21, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 93.24%. Comparing base (888207d) to head (1093e80).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #75      +/-   ##
==========================================
+ Coverage   93.22%   93.24%   +0.01%     
==========================================
  Files          13       13              
  Lines        2850     2858       +8     
==========================================
+ Hits         2657     2665       +8     
  Misses        193      193              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link

@ellipsis-dev ellipsis-dev bot left a comment

Choose a reason for hiding this comment

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

Important

Looks good to me! 👍

Reviewed 1093e80 in 1 minute and 9 seconds. Click for details.
  • Reviewed 41 lines of code in 1 files
  • Skipped 0 files when reviewing.
  • Skipped posting 5 draft comments. View those below.
  • Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
1. src/lib.rs:892
  • Draft comment:
    Avoid using unwrap() on the result of strip_prefix(pkg_name). Consider handling the None case explicitly.
  • Reason this comment was not posted:
    Comment was on unchanged code.
2. src/lib.rs:899
  • Draft comment:
    Document the rationale behind constructing the inner_request and its impact on directory resolution.
  • Reason this comment was not posted:
    Confidence changes required: 50% <= threshold 50% None
3. src/lib.rs:892
  • Draft comment:
    Avoid using unwrap() on specifier.strip_prefix(pkg_name) as it may panic if pkg_name is not a prefix. Consider handling this case gracefully.
  • Reason this comment was not posted:
    Comment was on unchanged code.
4. src/lib.rs:885
  • Draft comment:
    The logic computing 'inner_request' is fairly complex. Consider refactoring this block into a helper function or adding more inline comments for improved clarity and maintainability.
  • Reason this comment was not posted:
    Comment was not on a location in the diff, so it can't be submitted as a review comment.
5. src/lib.rs:876
  • Draft comment:
    Typo: The comment "symbol linked package doesn't have node_modules structure" should be corrected to "symlinked package doesn't have node_modules structure" for clarity.
  • Reason this comment was not posted:
    Comment was on unchanged code.

Workflow ID: wflow_vmW9OZON23OrvzXX

You can customize Ellipsis by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.

@codspeed-hq
Copy link

codspeed-hq bot commented Apr 21, 2025

CodSpeed Performance Report

Merging #75 will not alter performance

Comparing fix/pnp_nested_package_json (1093e80) with main (888207d)

Summary

✅ 3 untouched benchmarks

@unrs unrs deleted a comment from coderabbitai bot Apr 21, 2025
@JounQin JounQin merged commit 5648d7b into main Apr 21, 2025
21 checks passed
@JounQin JounQin deleted the fix/pnp_nested_package_json branch April 21, 2025 11:31
@JounQin JounQin mentioned this pull request Apr 21, 2025
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.

import/no-unresolved unable to resolve @atlaskit/pragmatic-drag-and-drop’s nested imports after upgrading 3.8.7 → 4.2.4

2 participants