Oskari Noppa

Results 35 comments of Oskari Noppa

> Babel has the same bug (Babel repl example), though it looks like it doesn't have the same problem with Flow Oh that's very interesting, we use Flow so I...

I don't think this "bug" actually causes any issues that'd be visible to the end user. Without the `else if`, all version check calls to the native client (i.e. when...

It would be nice if supabase would at least be installed with `--ignore-scripts` in such a way that running `npx supabase` would then give something a bit more descriptive than...

Would be pretty awesome if this would also work as a refinement for optional properties ```javascript type A = { foo?: string } declare var a: A if (Object.hasOwn(a, 'foo'))...

I wasn't able to make this using string key arg in the second argument, but you can make a similar function that refines a bit if you change the API...

Seems like the same thing as in #8108 and #8593

@trygveaa I don't think it's possible to combine in-process mode and reloading anymore after v9. From the [changelog](https://github.com/dherault/serverless-offline/releases/tag/v9.0.0) > handler reloading within the node.js process (in-process mode) was removed and...

I'm not the author but I think I may be able to provide some info, based on reading the changelogs and working to get our dev setup at work to...

Digging through the code a bit, turns out there already is such a hook, `'offline:functionsUpdated:cleanup'` :thinking:

This can now be achieved with a separate plugin, [serverless-offline-watcher](https://github.com/domdomegg/serverless-offline-watcher). ```yaml plugins: - serverless-offline - serverless-offline-watcher custom: serverless-offline-watcher: - path: - src/**/* hook: offline:functionsUpdated ```