feat: add import path for unresolved import diagnostics#7625
Merged
graphite-app[bot] merged 1 commit intomainfrom Dec 23, 2025
Merged
Conversation
Member
Author
How to use the Graphite Merge QueueAdd the label graphite: merge to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Contributor
Benchmarks Rust |
IWANABETHATGUY
approved these changes
Dec 22, 2025
Member
Merge activity
|
19af45b to
78c2c6b
Compare
434f788 to
5f12334
Compare
78c2c6b to
061f76c
Compare
✅ Deploy Preview for rolldown-rs canceled.
|
graphite-app bot
pushed a commit
that referenced
this pull request
Dec 23, 2025
Added a help for UNRESOLVED_IMPORT error to output the import path. ``` [UNRESOLVED_IMPORT] Error: Could not resolve '../pkg' in node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js ╭─[ node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js:17:28 ] │ 17 │ module.exports = require(`../pkg`); │ ────┬─── │ ╰───── Module not found. │ │ Help: 'node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js' is imported by the following path: │ - node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js │ - node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.mjs │ - node_modules/.pnpm/[email protected]_@[email protected]/node_modules/vite/dist/node/chunks/node.js │ - node_modules/.pnpm/[email protected]_@[email protected]/node_modules/vite/dist/node/index.js │ - src/main.tsx │ - index.html ────╯ ```
061f76c to
ed6c962
Compare
Added a help for UNRESOLVED_IMPORT error to output the import path. ``` [UNRESOLVED_IMPORT] Error: Could not resolve '../pkg' in node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js ╭─[ node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js:17:28 ] │ 17 │ module.exports = require(`../pkg`); │ ────┬─── │ ╰───── Module not found. │ │ Help: 'node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js' is imported by the following path: │ - node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.js │ - node_modules/.pnpm/[email protected]/node_modules/lightningcss/node/index.mjs │ - node_modules/.pnpm/[email protected]_@[email protected]/node_modules/vite/dist/node/chunks/node.js │ - node_modules/.pnpm/[email protected]_@[email protected]/node_modules/vite/dist/node/index.js │ - src/main.tsx │ - index.html ────╯ ```
ed6c962 to
3a0e731
Compare
This was referenced Dec 24, 2025
shulaoda
added a commit
that referenced
this pull request
Dec 24, 2025
## [1.0.0-beta.57] - 2025-12-24 ✨ TypeScript Project References Support - Rolldown now supports TypeScript project references when manually specifying a `tsconfig` - See more details: https://rolldown.rs/options/tsconfig 💥 Rename `__export` to `__exportAll` - Update `rolldown-plugin-dts` to the latest version for compatibility ### 💥 BREAKING CHANGES - tsconfig: enable project references support in manual mode (#7545) by @shulaoda ### 🚀 Features - add `CANNOT_CALL_NAMESPACE` warning (#7636) by @sapphi-red - add import path for unresolved import diagnostics (#7625) by @sapphi-red - optimize dynamic entry facade chunks by merging with common chunks when they are captured by common chunks (#7486) by @IWANABETHATGUY ### 🐛 Bug Fixes - rename `__export` to `__exportAll` to be compatible with `cjs-module-lexer` (#7640) by @IWANABETHATGUY - strip UTF-8 BOM when using text loader (#7635) by @sapphi-red - rolldown_plugin_replace: avoid crashing with invalid delimiters (#7621) by @sapphi-red ### 🚜 Refactor - export all filter functions (#7622) by @sxzz - allow multiple help messages in diagnostics (#7624) by @sapphi-red ### 📚 Documentation - add README.md to packages/rolldown (#7556) by @Copilot ### ⚡ Performance - use fsevents on macOS for file watching (#7596) by @sapphi-red ### 🧪 Testing - handle re-exports of external modules in CJS format (#7641) by @IWANABETHATGUY - update integration to use vite's rolldown-canary branch (#7633) by @shulaoda ### ⚙️ Miscellaneous Tasks - docs: fix Netlify ignore condition to detect docs changes across all PR commits (#7637) by @Copilot - deps: update rollup submodule for tests to v4.54.0 (#7630) by @sapphi-red - skip benchmarks for PRs with 'graphite: merge-when-ready' label (#7631) by @Boshen - deps: update esbuild for tests to 0.27.2 (#7629) by @sapphi-red - fix "update-test-dependencies" workflow (#7628) by @sapphi-red - deps: update test262 submodule for tests (#7626) by @sapphi-red - deps: update dependency oxlint to v1.35.0 (#7623) by @renovate[bot] Co-authored-by: shulaoda <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Added a help for UNRESOLVED_IMPORT error to output the import path.