You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fixes two problems:
- module rules were not being correctly passed to webpack
- now that `resolve: { symlinks: false }` has been added to the webpack
config, webpack and Node disagree on the path to a module accessed
through `npm link`. This means that passing `require.resolve`'s result
to webpack is no longer guaranteed to work for a module `test`.
Instead we now use `path.resolve` which will match webpack's idea of
the path.
0 commit comments