David Calhoun

Results 40 comments of David Calhoun
trafficstars

I think there's a slightly different issue mentioned by @joshribakoff-sm I'm seeing this issue with `d3-scale` v4 when trying to build the app with Next.js: ``` ../../.yarn/__virtual__/@nivo-legends-virtual-c3468b9dca/0/cache/@nivo-legends-npm-0.79.1-dd1c63aa09-1f4bb8da28.zip/node_modules/@nivo/legends/dist/nivo-legends.cjs.js Module not found:...

This is a workaround via`.yarnrc.yml` and works for `0.78.0` (last minor version). You'll need to run `yarn` again after changing this: ``` # .yarnrc.yml packageExtensions: "@react-spring/web@*": dependencies: react-dom: "*" ```...

This is related to #1941 but with added details - I'm ok if you want to close this in favor of that ticket.

I'm not sure why but I'm also not seeing `booleanIntersects` in my IDE with version 6.5.0 when using Yarn 3.2.3. Quick workaround: ```diff -import { booleanIntersects } from '@turf/turf'; +import...

Just ran into the same issue - also with the string `id`. Example: ```js pluralize('Foo ID', 2); // -> 'Foo IDS' ``` In this case I want to control the...

I'm also getting yarn install times around 30 seconds with this, which I'm curious if I can improve. I'm getting cache hits (see log below), but it seems to take...

Quick update: I was able to improve the performance somewhat by using `actions/cache@v2` instead. Using `bahmutov/npm-install@v1`, was taking 30+ seconds total on a cache hit, which isn't too bad. But...

Not sure if it's useful, but ran into a similar issue when updating from Node 14 to Node 16. Running `yarn install` rebuilt `gl` and `canvas` because its dependency tree...