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

Swc causing error in production. Related to citation-js and citeproc. #69150

Closed
igloo1505 opened this issue Aug 21, 2024 · 11 comments
Closed

Swc causing error in production. Related to citation-js and citeproc. #69150

igloo1505 opened this issue Aug 21, 2024 · 11 comments
Assignees
Labels
bug Issue was opened via the bug report template. linear: next Confirmed issue that is tracked by the Next.js team. locked Runtime Related to Node.js or Edge Runtime with Next.js. SWC Related to minification/transpilation in Next.js.

Comments

@igloo1505
Copy link

Link to the code that reproduces this issue

https://github.com/igloo1505/ulldApp

To Reproduce

I'm building two separate but related projects that are intended to work together. One is a large monorepo, the other is a single Next app currently on 14.2.5. You can clone the single app at the repo here, but it will require an appConfig.ulld.json file at the root of that project that would look something like
appConfig.ulld.json to build and run without blowing up.

Current vs. Expected behavior

The app would produce an error that was related to one of citation-js's dependencies, citeproc which was apparently generated by swc. It ran flawlessly in development, but output this error in production:

TypeError: Cannot read properties of undefined (reading 'name')
    at t.XmlJSON.addMissingNameNodes (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:17:43244)
    at new t.Engine (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:17:67469)
    at u (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:1:373946)
    at c (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:1:374213)
    at bibliography (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:1:374923)
    at tl (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:1:28027)
    at g.tm [as format] (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:1:28107)
    at d (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/chunks/34354.js:17:2746)
    at async v (/Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/.next/server/app/api/events/onSync/route.js:1:12672)
    at async /Users/bigsexy/Desktop/current/ulldSandbox/ulldApp/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:36258

Disabling swc with swcMinify: false resolved the issue, but I'm posting here so that you're aware for [email protected] when that option won't be available.

There was a related issue submitted by the citation-js author here, but it was close due to inactivity.

Provide environment information

Operating System:
  Platform: darwin
  Arch: arm64
  Version: Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:34 PDT 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T8103
  Available memory (MB): 16384
  Available CPU cores: 8
Binaries:
  Node: 22.4.1
  npm: 10.8.1
  Yarn: 4.3.1
  pnpm: 9.7.1
Relevant Packages:
  next: 14.2.5 // Latest available version is detected (14.2.5).
  eslint-config-next: 14.2.5
  react: 18.2.0
  react-dom: 18.2.0
  typescript: 5.5.4
Next.js Config:
  output: N/A

Which area(s) are affected? (Select all that apply)

Runtime, SWC

Which stage(s) are affected? (Select all that apply)

next build (local), next start (local)

Additional context

No response

@igloo1505 igloo1505 added the bug Issue was opened via the bug report template. label Aug 21, 2024
@github-actions github-actions bot added Runtime Related to Node.js or Edge Runtime with Next.js. SWC Related to minification/transpilation in Next.js. labels Aug 21, 2024
@jonluca
Copy link
Contributor

jonluca commented Aug 23, 2024

CleanShot 2024-08-23 at 12 59 33@2x

We're also seeing this issue as well for what its worth. Disabling swcMinify fixes it.

@darthmaim
Copy link
Contributor

@jonluca The invalid unicode point error is caused by Node.js 22.7.0, downgrading to Node.js 22.6.0 fixes that error. This is not caused by Next.js.

@jonluca
Copy link
Contributor

jonluca commented Aug 23, 2024

That would do it! thanks @darthmaim

@RaenonX
Copy link

RaenonX commented Aug 24, 2024

@jonluca The invalid unicode point error is caused by Node.js 22.7.0, downgrading to Node.js 22.6.0 fixes that error. This is not caused by Next.js.

This is a life saver because all my new builds are failing deterministically and I am scrathcing head finding the root cause, only to notice that it's node new version release breaking it.

I have filed nodejs/node#54532 so hopefully node.js team can fix it.

@ncostaramos
Copy link

Got Tenser errors with node.js -v 22.7.0.

No error when using node.js -v 20.17.0.

@kdy1 kdy1 self-assigned this Aug 29, 2024
@kdy1
Copy link
Member

kdy1 commented Aug 29, 2024

Did you try the latest canary?

@kdy1
Copy link
Member

kdy1 commented Aug 30, 2024

I can't run your repro because of ulldBuildData.json".

@crazyWolf-cz
Copy link

Node 22.8. fixed this 🥳

@github-actions github-actions bot added the linear: next Confirmed issue that is tracked by the Next.js team. label Sep 9, 2024
@lightify97
Copy link

@crazyWolf-cz Just experienced this with v22.8.0 (Next v14.2.11)

@kdy1
Copy link
Member

kdy1 commented Sep 20, 2024

Can you try 15 canary? I couldn't backport the SWC minifier because of some Rust-side restrictions related to swc_core, but those issues should be fixed already in the upstream.

@ztanner ztanner closed this as completed Nov 14, 2024
Copy link
Contributor

This closed issue has been automatically locked because it had no new activity for 2 weeks. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 29, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue was opened via the bug report template. linear: next Confirmed issue that is tracked by the Next.js team. locked Runtime Related to Node.js or Edge Runtime with Next.js. SWC Related to minification/transpilation in Next.js.
Projects
None yet
Development

No branches or pull requests

9 participants