Upgrade Redux packages (#28585)
This commit is contained in:
parent
fe2667bb0d
commit
a0e237a96f
25 changed files with 167 additions and 104 deletions
|
@ -7,8 +7,14 @@ module.exports = {
|
|||
include: [
|
||||
settings.source_path,
|
||||
...settings.resolved_paths,
|
||||
'node_modules/@reduxjs'
|
||||
].map(p => resolve(p)),
|
||||
exclude: /node_modules/,
|
||||
exclude: function(modulePath) {
|
||||
return (
|
||||
/node_modules/.test(modulePath) &&
|
||||
!/@reduxjs/.test(modulePath)
|
||||
);
|
||||
},
|
||||
use: [
|
||||
{
|
||||
loader: 'babel-loader',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue