Malik MONDESIR

Results 6 comments of Malik MONDESIR

When I cloned the repo and ran `pint`, it told me that 101 files had the wrong "line_ending" and when I checked them, they were all using CRLF and now...

It's a minor change but I just wanted to imitate the latest versions of Laravel which now includes this for Intellisense. Thanks for mentioning the docblock config option, I didn't...

The following changes worked for me (I commented them): [InertiaPageGenerator.php](https://github.com/laravel-shift/blueprint/blob/fe90c6ab736fd8fa5acba04c8f4d0547da0be092/src/Generators/Statements/InertiaPageGenerator.php#L58) ```php protected function getAdapter(): ?array { $packagePath = base_path('package.json'); if (!$this->filesystem->exists($packagePath)) { return null; } $contents = $this->filesystem->get($packagePath); if (preg_match('/@inertiajs\/(vue3|react|svelte)/i',...

@jasonmccreary Among those 3 JS frameworks, only [React](https://www.typescriptlang.org/docs/handbook/jsx.html#basic-usage) uses a different extension for their views (`.tsx`). [Vue](https://vuejs.org/guide/typescript/overview.html#usage-in-single-file-components) and [Svelte](https://svelte.dev/docs/svelte/typescript#script-lang-ts) only need the `lang=ts` present (already handled in the second code...

Un-Volt-ing my tests like so do make my test suites run faster: ![Image](https://github.com/user-attachments/assets/fc0bdee0-d26d-497a-a706-91435edab32d) But all my tests become lengthier and I lose the convenience that Volt offers with the chained...

Hi, it's been a while since this issue is open. If it hasn't been solved yet, I would suggest a solution that worked for me: replacing the `$wire.$get('email')` by `Livewire.getByName('email')[0].email`...