filter by `descriptionData`
See original GitHub issueI need more granular filtering, using the descriptionData
rule available in Webpack5. (We have some packages in the node_modules that need reloading)
I see only exclude
and include
. Is support for the entire Webpack condition object coming?
And is it important to filter files for the ReactRefreshWebpackPlugin
? or rule for react-refresh/babel
enough?
Issue Analytics
- State:
- Created 2 years ago
- Comments:15 (7 by maintainers)
Top Results From Across the Web
How do I filter a list of data by id for my react component to get ...
I want to filter through the list of permissions which only ... "Map custom values (for each data source)", "description": "Data Source", ...
Read more >APM Visibility Filters | API Reference - Splunk Dev
APIs to manage visibility filters on indexed and unindexed span tags in Splunk APM. These filters identify and hide span tag values that...
Read more >ADTF: Media Description Data Generator Filter Plugin
Media Description Data Generator · demo_media_description_data_generator.filter.adtf.cid · Use this filter to generate random values for a specified Media ...
Read more >How to execute an IronPython script on Filter or Marking change.
How to execute an IronPython script on Filter or Marking change. ... Description: Data function to pass value of x to y and...
Read more >get_FN013: Get FN013 - Gear Description Data FN_Portal API in ...
get_FN013: Get FN013 - Gear Description Data FN_Portal API. In AdamCottrill/glfishr: Fetch ... for the full list of available filter keys (query parameters) ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ve been trying to make this work, but unfortunately it is not as simple as it sounds.
The compiler for rules which Webpack use is not exposed for third parties, so to emulate their behaviour would mean we have to re-implement the whole thing.
Instead of going down this route, it is possible for you to opt out of the built-in integration of the loader by making the
include
part match nothing (in the next release there will be a kill switch option) and inject@pmmmwh/react-refresh-webpack-plugin/loader
on your own via themodule.rules
property in your Webpack configuration. The loader is not really documented as it is considered part of our internal API, but if you don’t use complex ESM builds the default options should work for you.Yes, hopefully it is possible