Ilya Semenov

Results 102 comments of Ilya Semenov

Any reason for publishing a non-compiled version to npm that needs a real-time bundler to run? That's very untypical. I believe in your case it makes sense to use e.g....

By the way, I just happened to face a reverse problem (https://github.com/vueuse/vueuse/issues/3546): I needed to **unmark** keys accepting undefined as being optional: ```ts type A = { foo: string; bar?:...

This is already possible: ```ts class NewLineJoiner extends Joiner { join: Joiner['join'] = (...strings) => { return strings.join('\n') } } ``` Despite using the arrow function, this supports `this` and...

This is probably caused by the recent problem in iOS 16.4: https://github.com/facebook/react-native/issues/36794 @brentvatne You may want to consider to reopen the issue as it's a valid problem confirmed by RN...

I am not following how the proposed solution will solve any of the concerns I've raised above. For starters, I was only talking about runtime (app startup) configuration and you're...

@McPizza0 From what I see, both your module and the https://github.com/johannschopplich/nuxt-prepare which you marked as a successor allow to inject code to the **build phase**. What this ticket is about...

FWIW, I'm using a home-grown `components/ErrorBoundary.vue`: ```vue const error = ref() function clearError() { error.value = undefined } onErrorCaptured(err => { error.value = err return false }) const route =...

Just in case if anyone lands here trying to make Nuxt work in Chrome 49 (Windows XP), I managed to achieve that by removing `defer` from the script tags: ```patch...