Ben Scott
Ben Scott
In your particular use case as you're in the `generateBundle` hook, you can use `bundles[BUNDLEKEYHERE].modules` from the hook's arguments which are in import order. See https://repl.it/@BPScott/LightgrayPeriodicPrediction However this only includes...
@vladshcherbin what order would you expect? This ordering is depth first - `utils` is imported first, then `foo`, then `bar`. This matches the order in which JS code gets executed...
> This way parent component can have styles which will be overwritten by styles from child components. That's not how JS or CSS execution order works though. The code in...
Something that might help: the ordering of your components in your source code isn't important - it's the ordering of your `import` statements that matters :) In an ideal and...
I'm generally against adding new options to eslint-plugin-prettier as placing config files in non-standard locations is basically looking for trouble - its really hard to coordinate properly across CLIs and...
@dependabot rebase
# Audits for hooks conversion To help identify where we can focus for quick wins, here's an audit of the difficulty of migrating components (half done, I still need to...
Updated the tables to remove the completed items
Migration to functional components is still worthwhile IMO.
I've been running Vite with the following plugin (added after `vanillaExtract()` in my plugins array), and it seems to work without issue. ```js export function vanillaExtractSsrFixPlugin() { const externalsToRemove =...