ambar
ambar
好想法,看起来至少可以在搜索上支持,然后可以考虑行显示上注明
按项目示例下的使用是有效的,如果可以的话,请提供一个示例。
I think this is normal, esbuild's work is CPU-intensive and it will get the job done as fast as possible. The workload of the plugin doesn't affect the main VSCode...
@lusqua Caching is enabled by default (kept in memory, see the settings of `bundleSize.cache`) and each import is bundled only once.
FYI, I created a [dedupe-on-install](https://github.com/ambar/yarn-plugin-dedupe-on-install/blob/main/index.js) script. It's not very efficient, wish yarn would have an option to check and write at the same time: like `yarn dedupe --check-and-write` or `yarn...
FYI, The polyfill I'm using: ```ts // https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryListEvent/MediaQueryListEvent if ( typeof window !== 'undefined' && typeof window.matchMedia === 'function' && typeof MediaQueryList === 'undefined' ) { const testMql = window.matchMedia('')...