`--conditions xxx` cannot pass into `worker_thread`
Abierto
@juanarbol ya está trabajando en esto.
Desde el 23/11/2023.
confirmed-bug
esm
loaders
module
worker
- Lenguaje dominante
- JavaScript
- Estrellas
- 122k
- Forks
- 37.4k
- Merge medio
- 4 d 3 h
- PR fusionados (30 d)
- 272
Descripción
Version
v20.10.0
Platform
Darwin Alexs-MacBook-Pro.local 23.1.0 Darwin Kernel Version 23.1.0: Mon Oct 9 21:28:45 PDT 2023; root:xnu-10002.41.9~6/RELEASE_ARM64_T6020 arm64
Subsystem
module
What steps will reproduce the bug?
// main.js
import { Worker } from 'node:worker_threads'
new Worker(new URL('worker.js', import.meta.url), {
execArgv: ['--conditions', 'react-server']
})
// worker.js
import { register } from 'node:module'
register('./register.js', import.meta.url)
console.log('1')
import('./test.js')
// register.js
export async function resolve (specifier, context, nextResolve) {
// Take an `import` or `require` specifier and resolve it to a URL.
console.log('context', context.conditions)
return nextResolve(specifier, context, nextResolve)
}
export async function load (url, context, nextLoad) {
return nextLoad(url, context, nextLoad)
}
// test.js
console.log('3')
How often does it reproduce? Is there a required condition?
No response
What is the expected behavior? Why is that the expected behavior?
1
context [ 'node', 'import', 'node-addons', 'react-server' ]
3
What do you see instead?
1
context [ 'node', 'import', 'node-addons' ]
3
Additional information
Might cause RSC bundle issue https://github.com/dai-shi/waku/pull/178
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Evaluación
Este issue todavía no se ha evaluado.