Isidro Torregrosa Torralba
Isidro Torregrosa Torralba
Hi, as I saw `babel-plugin-universal-import` already allows to define chunk names using magic comments. Will that behaviour be added to this plugin aswell or should we stick with the other...
It gives plugin authors the ability to reflect changes during `renderChunk` into chunk hashes so mostly yes. For example a minification plugin could augment chunk hashes using the minify options...
@seivan what you are talking about is _cascading cache invalidation_ which is indeed a pity but will always be better than having a single bundle since you would have to...
Hi, its pretty possible that happens because calling `bundle.generate` creates several chunks but only the first one is returned as processed, which is the test file itself since they are...
You must set `extract` to the path where you want the css to be extracted, but sadly it will not extract one css file per bundle, that would be pretty...
Yes, the point is encapsulation but that doesn't mean event delegation should not work. It is true that you need to properly configure events your components manually dispatch if you...
- Writing metadata to later generate documentation: for example for an [OpenAPI](https://github.com/OAI/OpenAPI-Specification) schema. - Changing a class definition at runtime / injecting arguments into its constructor: @ inject example ```js...
I think being able to load import-maps dynamically would be beneficial specially for SPAs. We are currently using some sort of map for long term caching of static assets with...
> I'm a little unclear on the setup. How do you want to use import maps here? Imagine an app with some common modules to all routes and a big...
I'll try to be more specific: 1. Reduce initial load time in cases where the import map has a significant weight. 2. Allow to specify mappings at run-time conditionally _without...