samcic
samcic
The [Unicode CLDR](http://cldr.unicode.org/) is a frequently-recommended source for such information. It is used by many "big name" companies, is well maintained and importantly also includes the information necessary for culture-dependent...
@ef4 So as a test I wrote the following plugin with some basic temporary logging: ``` class DeterministicModuleIdsPlugin { apply(compiler) { const context = compiler.options.context; compiler.hooks.compilation.tap("DeterministicModuleIdsPlugin", compilation => { compilation.hooks.moduleIds.tap("DeterministicModuleIdsPlugin",...
@ef4 Thanks again for the help! Perhaps you can help me understand the big picture here. Why do we need to replace the two things that `stagingDir` is already doing...
@ef4 Ok thanks for the clarification, makes sense now 👍 . Many of the concepts involved here are new to me, so I'll need a bit of time to dive...
@ef4 So I spent some hours just now attempting to get started here, but I think I need a bit of a push in the right direction. Perhaps you can...
@ef4 Great, thanks for the tip. I'll keep working on it!
@ef4 Hey again! May I request some more guiding comments? I think I'm getting closer, at least on aspect (1). Would you mind taking a look at my latest changes...
@ef4 Thanks for the info! Just wanted to let you know that, although we just ended up using the `size` option in our project in order to upgrade to Ember...
Just an FYI that I'm unfortunately struggling to get back to this work, mainly because we found a very satisfactory workaround (using the `size` option) and because, as a newbie...
Thanks @ef4 ! So I added: ``` let app = new EmberApp(defaults, { autoImport: { webpack: { optimization: { moduleIds: 'deterministic' } } } }); ``` ...however it doesn't change...