Taylor Plante

Results 10 comments of Taylor Plante

This took some digging to find, but the Contentful JS SDK also distributes a version built for [browsers](https://github.com/contentful/contentful.js#using-it-directly-in-the-browser) (at least in v9+), otherwise it is assumed to be running in...

@wmhartl would you mind sharing more explicitly what you've done to `transformIgnorePatterns` to get jest and `react-simple-maps@beta` working together? I can't seem to bypass: ``` /node_modules/react-simple-maps/dist/index.js:1 ({"Object.":function(module,exports,require,__dirname,__filename,jest){import React, { createContext,...

@wmhartl that solved it for me! Thanks for sharing so quickly. Hoping @zimrick can deliver with an official release soon.

@tsvetomir I regularly upgrade dependencies, but because of the indirect relationship to `semver` I don't have control over its version. Yarn only lists dependency versions one layer deep--here's how my...

@mgoudy91 any news on v11 full release date? We're between a rock and a hard place because v10.8 uses an insecure version of axios, and 10.9+ carries this CSP issue.

@mgoudy91 what is the latest with the release?

@mgoudy91 thank you so much! Saved the day.

@mgoudy91 actually I seem to have an issue with the new version, my jest runner says the package is using invalid js. ``` /node_modules/contentful/dist/esm/index.js:1 ({"Object.":function(module,exports,require,__dirname,__filename,jest){export { createClient } from './contentful.js';...

@mgoudy91 this issue has been down-prioritized by our team, thankfully I am no longer in a big hurry to fix this, but do need to eventually. We're using `esbuild-jest` as...

For anyone going through the same issue in their jest suite, this worked for me: jest.config.ts ``` transformIgnorePatterns: ['/node_modules/contentful.+\\.(?!js|cjs)$'], ```