Jaakko Juvonen

Results 10 comments of Jaakko Juvonen

I encountered the same problem. A week ago build was working but now `cordova platform add android` fails. Here's the error when running the command in verbose mode: ```Cannot read...

The refresh token expiry time is configurable option. I've set it to maximum (10 years 😅). Basically long refresh token validity time is the only way to keep users logged...

Seems to be still an issue. Trying to figure out some workaround for this...

🤦 In my case the problem was bad indentation - I had accidentally placed `functionErrors` overrides to `custom.alerts` level when it should have been on `custom.alerts.definitions` level. With fixed indentation...

Just adding my 2 cents. We encountered two kind of weird problems using the latest msw version (1.1 or something): - `ReferenceError: setTimeout is not defined` when calling `server.close()` (https://github.com/facebook/jest/issues/11713#issuecomment-1462013989)...

Thanks @noppa 🙏 Managed to restore "old" hot reload behavior with your approach. Our project uses TS & webpack, so our conf looks like: ```yml custom: serverless-offline-watcher: - path: -...

@nevolgograd What kind of problem do you have? Our hot reload setup is not perfect either - there're occasional crashes due to some missing compiled js file (or something). Restarting...

Okay, looks good to me 🤔 I'm not sure of these, but you could try running serverless-offline without the `--useInProcess` flag. Also, try to debug print the serverless-offline-watcher events as...

Just to add my 2 cents. I also once tried to use a global logger in azure functions but the traces were not correctly associated to right function invocations. I...

Followed @dlombardiniGitHub 's idea but used the following regexp: `validate.validators.email.PATTERN = /(^$|(^([^()\[\]\\.,;:\s@"]+(\.[^()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$)/` ... which basically says `/(empty string | email)/`