Nicola Krumschmidt

Results 23 comments of Nicola Krumschmidt

> My PR simply allows adding specific paths to listen for file changes in other folders. Admittedly it's a very simple addition that probably doesn't do much harm, but I...

Coincidentally, I just ran into the exact same issue while testing something else. I'll push a fix 👍

That could be 🤔 I was under the impression that the css file has to at least be imported _somewhere_. But this could very well be related to postcss doing...

Thanks for taking a look @azrikahar. `formatDefault()` is called over [here](https://github.com/knex/knex/blob/2dadde4214d9ee333adccfa517089647e94d23be/lib/dialects/sqlite3/schema/sqlite-tablecompiler.js#L54) before being passed to `SQLite3_DDL`. But it looks like it is called with the wrong type name. SQL uses...

This will be fixed by knex/knex#5319.

I tried to use `null` instead of `undefined` inside the data processed by flows because this data might be stringified to json and also for consistency. I think we should...

I ran into the exact same issue this PR is fixing. While investigationg the issue, in noticed that, in addition to the original issue, the wrong value is passed to...

We had a little discussion about the best fix for this issue and the solution we came up with is to use a "Synchronized Clock" mechanism via redis. The way...

This was mainly done for App extensions because some libraries expect bundlers to replace `process.env.NODE_ENV`, which is not an issue with API extensions. It should be reasonably safe to assume...

> I see! Thanks! So just to be sure, you're suggesting to remove it only for API extensions but keep it for App extensions? Exactly 👍 > Hopefully there's another...