Ryan Weaver
Ryan Weaver
Hi! This is something I keep wanting to do: ```twig {{ stimulus_action('say', 'hello') }} /> ``` I know why this doesn't work :). But from a user's perspective, I can't...
Relates somewhat to #425, where this system may be changed. Pretty simple: ```php class MyComponent { #[LiveProp()] public Invoice $invoice; } ``` Then in the template: ``` ``` This results...
Suppose this setup: ``` /* assets/styles/app.scss */ import 'tools/base'; ``` ``` /* assets/styles/tools/base.scss */ .splash { background-image: url('../../images/login-bg.png'); } ``` The image lives at `assets/images/login-bg.png`, so the relative path above...
It should be possible (even if it's not a super normal thing to do) to combine this bundle and https://github.com/SymfonyCasts/tailwind-bundle. To do that, there could be a central `asset-mapper-build-bundle` which...
Currently, we hardcode the version of the binary that we download. Added this as a configuration option probably makes sense. (This is also true for https://github.com/SymfonyCasts/tailwind-bundle)
If you have `tailwindcss` in your `package.json`, we should automatically detect and use that instead of downloading the binary. Just smooth out that workflow if the user wants to require...
See #31. It's currently illegal to install Encore globally. We should do our best to give a clear error when this happens.
Hi guys! I just wanted to drop this here for some discussion: https://knpuniversity.com/screencast/javascript-webpack/provide-plugin#comment-3712073331 tl;dr; If a jQuery plugin properly uses require (like [bootstrap-datepicker](https://github.com/uxsolutions/bootstrap-datepicker/blob/fefb59cd1d27fca869a91c97bf40fc13aeb13870/dist/js/bootstrap-datepicker.js#L11)), then it appears possible that it will...
The https://github.com/johnagan/clean-webpack-plugin has a `beforeEmit` option that default to false. When this is true, it deletes the files later - right before emit. This means that the time between when...
Totally just dropping this here until I have some more time to look at it, but Slack had a nice summary of build optimizations: https://slack.engineering/keep-webpack-fast-a-field-guide-for-better-build-performance-f56a5995e8f1 It may be possible that...