sebastien-f

Results 12 comments of sebastien-f

I actually used [colorette](https://www.npmjs.com/package/colorette), but it works the same : ` console.log(yellow((figlet.textSync("Text to be colored", { font: "Small"})))); ` which renders : ![image](https://github.com/patorjk/figlet.js/assets/2301807/33c3b6fc-e94e-4f6c-8cda-ff63080388a6)

Ran into this issue also while using RTK, the simplest way I found to solve it was to let Typescript infer everything from the call to persistReducer by putting the...

Using React 18(.2) I managed to make it work the following way (the way [described here](https://github.com/welldone-software/why-did-you-render/issues/154#issuecomment-732738552) didn't work for me, got errors when starting with `craco start`) : 1. Install...

> npm install [email protected] Same as @epten08, upgrading npm/node solved nothing, but [email protected] made it through. For what it's worth, I was on [email protected] as I was following the [blog...

I'm encountering the exact same issue. Builds fine, but when trying to deploy, getting multiple errors all looking the same : ``` Build failed: [email protected] from lock file npm ERR!...

> Removing package-lock seems fine to me. https://stackoverflow.com/a/54127283/111625. Short version : > Conclusion: don't ever delete package-lock.json. That being said, in many scenarios that won't be an issue, but why...

> This is still not solved. I encounter exactly the same problem. > > The only thing that works for me is deleting `package-lock.json` before deployment. However, as @michaelangeloio has...

It's a bit different from what I had (not by a large account, but still). If you did not tried it yet, what you could also do would be moving...

for what that's worth, I have the same setup as you and getting logs. The only difference is that I migrated to : ``` js import React from 'react'; if...

On the screenshot of the issue, if I untoggle "Pause on caught exceptions", there won't be any pause. Would it be possible to set it "off" by default, unless it...