-
Related project: https://github.com/KararTY/perplex-chat When running
which seems to stem from pbkdf2's use of default-encoding.js trying to use Is there an important configuration option I've forgot to include? I'm using NodeJS v14.4.0, and I've attached my current project as-is in the github link at the beginning of this discussion post, I hope I've posted this in the right place. Thanks for developing & maintaining Parcel 2. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 5 replies
-
I've gotten it to work when running Building the project ( |
Beta Was this translation helpful? Give feedback.
-
I was bitten by the same issue. Doesn't happen when using latest parcel v1. |
Beta Was this translation helpful? Give feedback.
-
Does anyone have a reproduction for this? Using |
Beta Was this translation helpful? Give feedback.
-
This works for me, but the graphql transformer does not work for me on the nightly builds with the imports showing up empty. Any idea when a fix may be applied to the parcel@next version? |
Beta Was this translation helpful? Give feedback.
-
Build: 2.0.0-beta.1 I'm running into the same 'process is not defined' issue due to pbkdf2 trying to access process.browser. This only happens when using the dev server. However, in my case, there're no markdown files being imported. I do have .md (and.mdx) files used by mkdocs and Storybook, but nothing in the project references those files. Is it possible Parcel is trying to include those anyhow? I've always assumed it only includes files that are discoverable by spidering index.html. |
Beta Was this translation helpful? Give feedback.
-
In case this helps anyone else: I saw this same issue but in a webpack-based app. |
Beta Was this translation helpful? Give feedback.
I've gotten it to work when running
npm run build
.Building the project (
parcel build
) seems to work, but usingparcel serve
does not.