Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix use of expose-loader in playground
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.
- Loading branch information