Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

108 exclude list #110

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft

108 exclude list #110

wants to merge 10 commits into from

Conversation

samanpwbb
Copy link

@samanpwbb samanpwbb commented Jan 5, 2021

This is a more abstracted fix for #108, an alternative to #109. Here, user may provide an excludeCompileNodeModules option as an alternative to compileNodeModules, in order to exclude specific modules. By default, GL JS 2+ gets placed in the excludeList. Needs tests and docs.

@samanpwbb samanpwbb marked this pull request as draft January 5, 2021 01:36
const config = createWebpackConfig(urc);
expect(config.module.rules[0].oneOf[1].include).toBeUndefined();
});
});
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could use a couple more tests:

  • Error case if user provides both include and exclude lists
  • Case where use provides their own set of exclude modules

@samanpwbb
Copy link
Author

samanpwbb commented Jan 5, 2021

Okay, this is now working. @kepta could you give this a look and lmk if the concept seems okay? If so I'll wrap up tests and docs.

@jingsam
Copy link

jingsam commented Jan 5, 2021

It would be better to update readme to tell users that compileNodeModules and excludeCompileNodeModules are mutually exclusive, we can not set both。

@samanpwbb samanpwbb requested a review from dereklieu January 6, 2021 18:05
@davidtheclark
Copy link
Contributor

One idea that could prevent the need for mutually exclusive configuration properties: make a breaking change to the compileNodeModules API to make its value an object that allows for more complex choices. I'd say this situation shows that the current interface is probably too limited; an object is nicely extensible.

For example, with an object you could do something like this:

compileNodeModules: { include: ['*'], exclude: ['mapbox-gl'] }

compileNodeModules: { exclude: ['mapbox-gl'] } // many * is the default include: value

One other opinion if you're still brainstorming: I'm wondering if the complexity of trying to distinguish the GL JS version is more trouble than it's worth, since the underreact user should be aware of their GL JS version and can decide to compile or not compile based on that.

Copy link

@dereklieu dereklieu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with the feedback here to either consolidate or document the include/exclude interface.

I also agree with removing special consideration for gl-js v2 in the configuration generator. This could be something to call out in the read me though, since it's true that many consumers of this project may also use gl-js.

Copy link
Contributor

@kepta kepta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One option is to directly export the include webpack property and let folks deal with it directly. We can add an example in the README on the best way to handle with gl-js versions.
That said, I am okay with any of the above approaches but would prefer whichever adds the least complexity to this aging codebase.

@jingsam
Copy link

jingsam commented Jan 13, 2021

I suggest just mapping includeCompileNodeModules and excludeCompileNodeModules options to webpack rule.include and rule.exclude. No more hack. Less code, less bug, and less burden.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants