1
1
mirror of https://github.com/c8r/x0.git synced 2024-08-17 01:10:32 +03:00

Merge pull request #67 from c8r/whc-require-resolve

Use require.resolve to determine path to whc
This commit is contained in:
John Otander 2018-06-13 18:45:36 -06:00 committed by GitHub
commit 5341e26996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ module.exports = async (opts) => {
config.mode = 'development'
config.context = opts.dirname
config.entry = opts.entry || path.join(__dirname, './entry')
config.output= {
config.output = {
path: path.join(process.cwd(), 'dev'),
filename: 'dev.js',
publicPath: '/'
@ -36,10 +36,12 @@ module.exports = async (opts) => {
path.join(opts.dirname, 'node_modules')
)
const whcAlias = config.resolve.alias['webpack-hot-client/client']
if (!fs.existsSync(whcAlias)) {
const whcPath = 'node_modules/webpack-hot-client/client'
config.resolve.alias['webpack-hot-client/client'] = path.join(process.cwd(), whcPath)
if (config.resolve.alias) {
const whcAlias = config.resolve.alias['webpack-hot-client/client']
if (!fs.existsSync(whcAlias)) {
const whcPath = path.dirname(require.resolve('webpack-hot-client/client'))
config.resolve.alias['webpack-hot-client/client'] = whcPath
}
}
config.plugins.push(