-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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(react): transpile only the config files then disable tsnode service #19387
fix(react): transpile only the config files then disable tsnode service #19387
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 35ca91d. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 6 targets
Sent with 💌 from NxCloud. |
df4b00c
to
f5ca733
Compare
f5ca733
to
49f0a5d
Compare
49f0a5d
to
19aa7a1
Compare
19e4d17
to
291c678
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some comments, but it's not critical. We can clean it up afterwards.
291c678
to
fbe26eb
Compare
fbe26eb
to
65fa142
Compare
packages/react/src/executors/module-federation-dev-server/module-federation-dev-server.impl.ts
Outdated
Show resolved
Hide resolved
graph/client-e2e/project.json
Outdated
@@ -4,7 +4,17 @@ | |||
"sourceRoot": "graph/client-e2e/src", | |||
"projectType": "application", | |||
"targets": { | |||
"pre-e2e": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This stuff is separate right? Can we sort this out outside of this PR?
caedb36
to
b9ef59c
Compare
b9ef59c
to
bae6674
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks much better, only the import should be be fixed.
@@ -3,6 +3,7 @@ import { join } from 'path'; | |||
import { existsSync, readFileSync } from 'fs'; | |||
import { logger } from '@nx/devkit'; | |||
import { tsNodeRegister } from '@nx/js/src/utils/typescript/tsnode-register'; | |||
import { registerTsProject } from 'nx/src/utils/register'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should come from @nx/js/src/internal
@@ -1,5 +1,6 @@ | |||
import { merge } from 'webpack-merge'; | |||
import { tsNodeRegister } from '@nx/js/src/utils/typescript/tsnode-register'; | |||
import { registerTsProject } from 'nx/src/utils/register'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should come from @nx/js/src/internal
Co-authored-by: Jason Jean <[email protected]> (cherry picked from commit a11e8f1)
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. |
Current Behavior
Dev Remotes cause both a TS error with redeclared const in a block-scope and type-checking running out of memory.
Expected Behavior
Dev remotes with a TS Config should work without issue
Related Issue(s)
Fixes #