Marco Pasqualetti
Marco Pasqualetti
Maybe are you sending multiple call at once with the same `callbackName`? ```javascript superagent.get('exampleURL') .use(superagentJSONP({ callbackParam: 'jsonp', callbackName: 'myCallbackName', timeout: 10000 })) .end(function(err, res){ console.info(err, res) }); superagent.get('exampleURL') .use(superagentJSONP({ callbackParam:...
Actually this is more an issue of `i18next`. I think that the problem is that `test` key uses an `_` which is the default `contextSeparator` / `pluralSeparator`. The key generation...
`t.d.ts` dedupe moved into a separate issue (#2148)
@escapedcat in order to avoid conflicts with ESM migration I'll wait merge of #3850 before working on a proposal. Also, if agree and there is a spot available, I would...
Honestly I have no idea on how to fix this 😢. If anyone has any idea on how to do this feel free to open a PR. As a workaround...
Gotcha, so it's related, if not the same, issue of the string union. If anyone wants to tackle feel free to open a PR.
Thanks for spend your time taking a look at this @stefan-schweiger! 🥂 ---- > Not sure if this maybe breaks something else Open a PR to see if your patch...
I tried this locally and it's working: ---- I also setup a simple GitHub Action and I'm unable to reproduce the issue: https://github.com/marcalexiei/commitlint-playground/actions/runs/8101865722/job/22143073353
> have you tried giving it an input that does conform to the format? It works: https://github.com/marcalexiei/commitlint-playground/actions/runs/8108167213/job/22160890870 ---- In your package.json you are using v18 packages https://github.com/ItsSunnyMonster/ruxel/blob/9709f3bdc30843d887146ae046d1cef583365f63/package.json#L3-L5 while on your...