Rafa Yepes

Results 9 comments of Rafa Yepes

Some other example: ``` TypeError: Illegal invocation at Window.get [as indexedDB] (node_modules/indexeddbshim/dist/indexeddbshim-node.js:6890:35) at shim (node_modules/indexeddbshim/dist/indexeddbshim-node.js:6841:16) at IDBFactory.IDB.shimIndexedDB.__useShim (node_modules/indexeddbshim/dist/indexeddbshim-node.js:6884:17) at setGlobalVars (node_modules/indexeddbshim/dist/indexeddbshim-node.js:6988:27) at Object. (jest/testSetup.js:19:1) at Generator.next () at new Promise...

We make heavy use of `data-*` due automation purposes. Telling our more designer oriented developers that now they need to use `cloneElement` whenever they have to add some `data-*` attribute...

I'm interested in this feature as well.

One approach might be to re-use the DOM elements making your Swipe work circularly. If you try it, it'd be great if you could share your experience :)

I have the exact same situation as @farisj explained above. What's the point of using yarn if I can't make sure that yarn.lock doesn't get out of sync? Want to...

I solve that with husky and lint-staged and adding the following to `package.json`: ```json { "scripts": { "precommit": "lint-staged" }, "lint-staged": { "+(package.json|yarn.lock)": [ "node ./scripts/yarn-check.js" ] }, "devDependencies": {...

@AndersDJohnson on CI you can install dependencies using `yarn install --frozen-lockfile --non-interactive`, which will fail if yarn.lock was not properly updated.

@alexanderwallin I've found that running `yarn check` on precommit and `yarn install --frozen-lockfile --non-interactive` to install dependencies on CI ensures that yarn is used instead of npm. Does that answer...

> how is it different from ButtonIos ad ButtonAndroid? It only bundles the one that matches your platform. It can be achieved for react-native-web with webpack as well. It a...