Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
I'm trying to use
oidc-client
library in my React project but run into the same error everytime I run the code :
Babel - Cannot read property 'TYPED_ARRAY_SUPPORT' of undefined
I know that there's a specific
Redux implementation
of this library but I've had the same issue so I'm taking a step back. I'll use the Redux implemenation once my issue is fixed.
I've pulled the
redux-oidc-example
code and I'm running both at the same time, trying to find what makes it break. The results I've had so far are :
Webpack configs are the same (mostly)
All "important" dependencies are the same, with the same version.
At this point I'm trying to align
every
dependencies to see if one of them is responsible but I'd welcome any idea.
EDIT after @MinusFour comment :
running
npm ls buffer
produce the following :
├─┬ styled-components@2.1.2
│ └── buffer@5.0.7
└─┬ webpack@2.7.0
└─┬ node-libs-browser@2.0.0
└── buffer@4.9.1
–
–
–
–
After a week worth of investigation (thanks to @MinusFour for setting me on the right path), It appears that it was a Webpack loader issue.
In the babel-loader
configuration, you need to exclude node_modules in a very peculiar way. redux-oidc-example
does it by using a regex and I was using an array of strings.
If you want to be compliant with Webpack convention and use an array of String, you can exclude nodes_modules this way :
exclude: [
path.join(__dirname, '/node_modules'),
// ... other exclusions
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.