-
Notifications
You must be signed in to change notification settings - Fork 26
Add support for aliases regex matching #2
Comments
Currently loaders are matched against the resolved resource. So you could write it less verbose with: module: {
loaders: [{ test: require.resolve('angular/angular'), loader: 'exports?angular'}]
} It may be possible to match against the resolved and non-resolved resource... |
I see. Some questions:
If the syntax becomes messy, perhaps using different keys? Something like: For aliases: module: {
loaders: [{ testAlias: 'angular', loader: 'exports?angular'}]
} For non-resolved resources: module: {
loaders: [{ testBefore: 'angular', loader: 'exports?angular'}]
} However I think something more simple like being based on the parameter type like this can be easier to use: For resolved resources, a module: {
loaders: [{ test: /angular\.js/, loader: 'exports?angular'}]
} For non-resolved resources and aliases, a plain module: {
loaders: [{ test: 'angular', loader: 'exports?angular'}]
} What do you think? |
strings already have a function. They match the start of the request, so you can pass an absolute path here. |
Oh I missunderstood part 1.
|
Hi again!
I hope to not be too spammy, but I'll try to report all the issues I find along the way ;)
Right now I'm using an alias to resolve a package name,
but the test regex doesn't tries to match the defined aliases.
Current way of doing it:
Easier and less verbose way supporting alias names:
Or even better, defaulting a test: String parameter to alias matching:
What do you think?
The text was updated successfully, but these errors were encountered: