Corentin Girard

Results 85 comments of Corentin Girard

What I did to resolve the issue, but only temporarily, is to add [`webpack-modules`](https://www.npmjs.com/package/webpack-modules) in `node_modules/cra-preact/src/(start|build).js`. Like the following: ```diff const hookIntoRequire = require('require-in-the-middle') + const WebpackModules = require('webpack-modules') hookIntoRequire(['react-scripts/config/webpack.config'],...

Okay, I just tried and thankfully it worked 😄 ``` DEBUG: Run with settings: {'alter_history': True, 'debug': True, 'env': {'GIT_TRACE': '1', 'LANG': 'C', 'LC_ALL': 'C'}, 'exclude_rules': [], 'excluded_search_path_prefixes': [], 'history_limit':...

- OS: Manjaro - Kernel: Linux 5.13.8-1 - The Fuck 3.31 using Python 3.9.6 and ZSH 5.8

Same problem. Usually when I `git push` and that I have this error: > fatal: The current branch master has no upstream branch. To push the current branch and set...

Hey @scorphus! Actually I didn't try with the `fuck` command but with my EscEsc shortcut. This shortcut comes from this plugin: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/thefuck which loads this function: ```bash fuck-command-line() { local...

And do you have any idea why a command like `vim /bin/sh +1 && gp` can appear? I have the same with the standard `fuck` command sometimes.

Maybe there should be a setting to add an array of directories to ignore.

The alternative n°2 is a good one I think.

What do you think about that?

You are correct in that a `conformToSchema` call is missing, and it works if I do this: ```js const fixed = await item.conformToSchema({ type: 'fromDynamo', customTypesDynamo: true, }); ``` The...