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

fix(core): find imports in export type statements #13921

Merged
merged 1 commit into from
Dec 30, 2022
Merged

fix(core): find imports in export type statements #13921

merged 1 commit into from
Dec 30, 2022

Conversation

spalger
Copy link
Contributor

@spalger spalger commented Dec 20, 2022

The "analyzeSourceFiles" functionality which automatically detects deps does not currently file "import" requests in statements using the relatively new export type ... from "..." syntax. This is happening because the scanner does not find an asterick or curly-bracket after the export keyword, so it strips that export statement from the code.

Current Behavior

Today, "import" statements using the relatively new export type ... from "..." syntax are stripped from the code before analysis occurs. This fixes the scanner to not drop these statements.

Expected Behavior

Analysis should identify that a package which includes nothing but export * from 'some-other-package' has a dependency on some-other-package, but today no dependency is discovered.

Related Issue(s)

I didn't file an issue, if I need to I'd be happy to.

The "analyzeSourceFiles" functionality which automatically detects deps
does not currently file "import" requests in statements using the
relatively new `export type ... from "..."` syntax. This is happening
because the scanner does not find an asterick or curly-bracket after
the `export` keyword, so it strips that export statement from the
code.
@vercel
Copy link

vercel bot commented Dec 20, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
nx-dev ✅ Ready (Inspect) Visit Preview Dec 20, 2022 at 3:34AM (UTC)

@AgentEnder AgentEnder merged commit d5c93bf into nrwl:master Dec 30, 2022
AgentEnder added a commit to AgentEnder/nx that referenced this pull request Jan 1, 2023
We call `require('@nrwl/vite')` inside @nrwl/js. This creates a circular dep between vite + js. It was not picked up prior to the new beta, as there was a bug in the typescript import scanner preventing it from being read. See nrwl#13921
AgentEnder added a commit to AgentEnder/nx that referenced this pull request Jan 4, 2023
We call `require('@nrwl/vite')` inside @nrwl/js. This creates a circular dep between vite + js. It was not picked up prior to the new beta, as there was a bug in the typescript import scanner preventing it from being read. See nrwl#13921
AgentEnder added a commit to AgentEnder/nx that referenced this pull request Jan 4, 2023
We call `require('@nrwl/vite')` inside @nrwl/js. This creates a circular dep between vite + js. It was not picked up prior to the new beta, as there was a bug in the typescript import scanner preventing it from being read. See nrwl#13921
@spalger spalger deleted the fix/export-type-import-discovery branch January 5, 2023 06:17
@github-actions
Copy link

This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 15, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants