Dmitry Shvedov

Results 27 comments of Dmitry Shvedov

Seeing a similar issue with GoPro Hero 5 Black. I currently have two folders on the Cam: `100GOPRO` and `101GOPRO` `downloadAll()` only downloads the first file from each folder.

Related: I'm getting the error: ``` ERROR in ./node_modules/deepcopy/index.mjs Module not found: Error: Can't resolve './src/index' in '/Users/[...]/webapp/node_modules/deepcopy'```

Build worked for me using `NODE_OPTIONS="--max-old-space-size=4096"` environment variable, even though it took excruciatingly long time. Setting it to a higher value doesn't seem to help.

It's in an open-source repo fortunately: https://github.com/figlinq/react-chart-editor/blob/769054741922b66d3ef540a810790c2f86bafe18/src/styles/_mixins.scss#L209 I had to add `!optional` to the offending `extends`s to make Sass compile.

Here's the solution for the same issue with `styled-components`: ```javascript import React from 'react'; import styled, {StyleSheetManager} from 'styled-components'; import NewWindow from 'react-new-window'; class Parent extends React.Component { constructor(props) {...

Got things working with this one for now: https://github.com/Financial-Times/polyfill-library/blob/master/polyfills/URL/polyfill.js

Yeah, that's weird. Gonna give it another shot when I have my hands on IE again.

In my case, as I inspect `cache` in the debugger, `readQuery` and `writeQuery` are not defined at all. I'm trying to mock them out in my tests, without success so...

I ended up solving this like so: ``` export const mockCache = () => { const map = new Map(); return { size: () => map.size, readQuery: ({query, variables}) =>...