g3tr1ght
g3tr1ght
@kud This is the issue https://github.com/stephencookdev/speed-measure-webpack-plugin/issues/170
https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/d96ebed7d0dd38e6a0b9a935aaac0d3c24722944/src/parseUtils.js#L13
@w-t-w I'm guessing you can simply instantiate both plugins and be on your own with minimization: ``` const TerserPlugin = require("terser-webpack-plugin"); const CssMinimizerPlugin = require("css-minimizer-webpack-plugin"); module.exports = { optimization: {...
@w-t-w terser-webpack-plugin is a transitive dependency for you in any case, you either pin it in your package.json and instantiate yourself (make it direct dependency) or let webpack instantiate it...
I had to wrestle with the same as we needed to create double-bundle (one for ES6-and-up browsers and one for ES5-and-down browsers) and inject in a single html file, so...
I have a design related question to the NX team. Why does `@nrwl/nx/enforce-module-boundaries` rule whose purpose is "to ensure one can't import something that isn't meant to be imported in...
Threads like this get me wondering as to why "caching feature" is so involved and tangled in the core design. My personal take is one shouldn't design any solutions around...
It would be great to split `nx-enforce-module-boundaries` into two eslint rules: - one that checks for circular dependencies (there already exists an `import/no-cycle` rule in [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import), so an additional NX...
@Coly010 getting traction on this issue is great, thank you for that! **TLDR** - **v17 and upwards**: path aliases mapper started via registerTsConfigPaths is turned off (prematurely) right after loading...
@Coly010 I think, when it comes to auxiliary scripts and node services, it's reasonable to expect that imports can be fully dynamic. Such imports can't be statically analyzable and they...